Skip to content

Commit

Permalink
fix: ifStatement scope
Browse files Browse the repository at this point in the history
  • Loading branch information
sonnyvesali committed Nov 6, 2024
1 parent 77f4efa commit 9db8e4a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 2 additions & 0 deletions data/fixtures/scopes/dart/ifStatement.scope
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
foo() {
if(true) { }
}
---

8 changes: 2 additions & 6 deletions data/playground/dart.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
void main() {
hi() {
if (true) {
return true;
}
}
void foo() {
if (true) {}
}

0 comments on commit 9db8e4a

Please sign in to comment.