Index: test/codegen/expect/names.js |
diff --git a/test/codegen/expect/names.js b/test/codegen/expect/names.js |
index fc41a27b60288f010494c964db34b45ca6e78907..f0a360c10528d87aa2f2c924fe6539970550e29b 100644 |
--- a/test/codegen/expect/names.js |
+++ b/test/codegen/expect/names.js |
@@ -13,7 +13,7 @@ dart_library.library('names', null, /* Imports */[ |
} |
} |
dart.setSignature(Foo, { |
- methods: () => ({[_foo$]: [core.Object, []]}) |
+ methods: () => ({[_foo$]: [dart.dynamic, []]}) |
}); |
function _foo() { |
return 456; |
@@ -30,7 +30,7 @@ dart_library.library('names', null, /* Imports */[ |
dart.defineNamedConstructor(Frame, 'caller'); |
dart.setSignature(Frame, { |
constructors: () => ({caller: [Frame, [core.List]]}), |
- statics: () => ({callee: [core.Object, []]}), |
+ statics: () => ({callee: [dart.dynamic, []]}), |
names: ['callee'] |
}); |
class Frame2 extends core.Object {} |