Skip to content

Commit b9dbde9

Browse files
committed
bugfix: fix if condition.
1 parent 3d47210 commit b9dbde9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/front_end/lib/src/fasta/source/source_library_builder.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1493,7 +1493,7 @@ class SourceLibraryBuilder extends LibraryBuilderImpl {
14931493
default:
14941494
break;
14951495
}
1496-
if (className == "Function") {
1496+
if (className != "Function") {
14971497
return;
14981498
}
14991499
if (decType == "class" && importUri.scheme == "dart") {

0 commit comments

Comments
 (0)