Skip to content

Commit

Permalink
amend
Browse files Browse the repository at this point in the history
  • Loading branch information
SpontanCombust committed Apr 24, 2024
1 parent 34d8a79 commit 59cf94c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/core/src/ast/traversal/visitor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ pub trait StatementVisitor {

/// Called when visiting a function block. This may mean a function definition or a scope inside that function.
fn visit_block_stmt(&mut self, n: &FunctionBlockNode, ctx: FunctionBlockTraversalContext) -> FunctionBlockTraversalPolicy { Default::default() }
fn exit_block_stmt(&mut self, n: &FunctionBlockNode, ctx: FunctionBlockTraversalContext);
fn exit_block_stmt(&mut self, n: &FunctionBlockNode, ctx: FunctionBlockTraversalContext) {}

/// Called when visiting a NOP statement.
/// It most notably means:
Expand Down

0 comments on commit 59cf94c

Please sign in to comment.