Skip to content

Commit

Permalink
Version 3.3.0-213.0.dev
Browse files Browse the repository at this point in the history
Merge 2f15068 into dev
  • Loading branch information
Dart CI committed Dec 9, 2023
2 parents e349db9 + 2f15068 commit ad72e1a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions pkg/dart2wasm/lib/types.dart
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,12 @@ class Types {
// class ID. If we ever change that logic, we will need to change this code.
List<String> typeNames = [];
for (ClassInfo classInfo in translator.classes) {
String className = classInfo.cls?.name ?? '';
typeNames.add(className);
Class? cls = classInfo.cls;
if (cls == null || cls.isAnonymousMixin) {
typeNames.add("");
} else {
typeNames.add(cls.name);
}
}
return typeNames;
}
Expand Down
2 changes: 1 addition & 1 deletion tools/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ CHANNEL dev
MAJOR 3
MINOR 3
PATCH 0
PRERELEASE 212
PRERELEASE 213
PRERELEASE_PATCH 0

0 comments on commit ad72e1a

Please sign in to comment.