Index: test/codegen_expected/language/first_class_types_literals_test_01_multi.js |
diff --git a/test/codegen_expected/language/first_class_types_literals_test_01_multi.js b/test/codegen_expected/language/first_class_types_literals_test_01_multi.js |
index dee4d2b6bfab7d5574fec8374bd7d5dd4a283199..cc9673896bf4594faa21c7e4f9f5b0c23c0cf5a7 100644 |
--- a/test/codegen_expected/language/first_class_types_literals_test_01_multi.js |
+++ b/test/codegen_expected/language/first_class_types_literals_test_01_multi.js |
@@ -34,9 +34,9 @@ dart_library.library('language/first_class_types_literals_test_01_multi', null, |
JSArrayOfType().of([dart.wrapType(core.int)]); |
foo(JSArrayOfType().of([dart.wrapType(core.int)])); |
JSArrayOfType().of([dart.wrapType(core.int)])[dartx.length]; |
- dart.map([1, dart.wrapType(core.int)]); |
- foo(dart.map([1, dart.wrapType(core.int)])); |
- dart.map([1, dart.wrapType(core.int)])[dartx.keys]; |
+ dart.map([1, dart.wrapType(core.int)], core.int, core.Type); |
+ foo(dart.map([1, dart.wrapType(core.int)], core.int, core.Type)); |
+ dart.map([1, dart.wrapType(core.int)], core.int, core.Type)[dartx.keys]; |
expect$.Expect.equals(dart.wrapType(core.int), dart.wrapType(core.int)); |
expect$.Expect.notEquals(dart.wrapType(core.int), dart.wrapType(core.num)); |
expect$.Expect.equals(dart.wrapType(first_class_types_literals_test_01_multi.Foo), dart.wrapType(first_class_types_literals_test_01_multi.Foo)); |