We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 586c5f3 commit 6535a01Copy full SHA for 6535a01
pkg/dart2wasm/lib/types.dart
@@ -559,7 +559,7 @@ class Types {
559
[argumentType],
560
[w.NumType.i32],
561
),
562
- '<obj> is ${testedAgainstType.classNode}');
+ '<obj> is ${testedAgainstType.classNode.name}');
563
564
final b = function.body;
565
b.local_get(b.locals[0]);
@@ -623,7 +623,7 @@ class Types {
623
624
[returnType],
625
626
- '<obj> as ${testedAgainstType.classNode}');
+ '<obj> as ${testedAgainstType.classNode.name}');
627
628
629
w.Label asCheckBlock = b.block();
0 commit comments