Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(218)

Unified Diff: test/codegen_expected/language/first_class_types_literals_test_02_multi.js

Issue 2211293002: Reify type params on map literals (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Remove unnecessary null check Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/codegen_expected/language/first_class_types_literals_test_02_multi.js
diff --git a/test/codegen_expected/language/first_class_types_literals_test_02_multi.js b/test/codegen_expected/language/first_class_types_literals_test_02_multi.js
index af78388bf07ed428712196c4ce2a4ab1dbf47afd..aeb715116da6bac1bd79b3315cd51a750c34f7bd 100644
--- a/test/codegen_expected/language/first_class_types_literals_test_02_multi.js
+++ b/test/codegen_expected/language/first_class_types_literals_test_02_multi.js
@@ -34,9 +34,9 @@ dart_library.library('language/first_class_types_literals_test_02_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_02_multi.Foo), dart.wrapType(first_class_types_literals_test_02_multi.Foo));

Powered by Google App Engine
This is Rietveld 408576698