You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following code generates an error at outer: when parsed with tree-sitter-dart, yet it is valid code. Strangely commenting out the import makes it pass
import 'package:meta/meta.dart';
void func() {
outer:
for (int i = 0; i < 0; i++) {
continue outer;
}
}
The text was updated successfully, but these errors were encountered:
The following code generates an error at
outer:
when parsed with tree-sitter-dart, yet it is valid code. Strangely commenting out theimport
makes it passThe text was updated successfully, but these errors were encountered: