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

Unified Diff: test/codegen_expected/language/map_literal9_test.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/map_literal9_test.js
diff --git a/test/codegen_expected/language/map_literal9_test.js b/test/codegen_expected/language/map_literal9_test.js
index 7e8b4984e0cf2a14a65e23e3e844e93656f331f1..9ed69262c9f98a63bcdc8c2050d54bab0da66168 100644
--- a/test/codegen_expected/language/map_literal9_test.js
+++ b/test/codegen_expected/language/map_literal9_test.js
@@ -12,12 +12,12 @@ dart_library.library('language/map_literal9_test', null, /* Imports */[
let const$;
let const$0;
map_literal9_test.main = function() {
- let m1 = const$ || (const$ = dart.const(dart.map({"[object Object]": 0, "1": 1})));
+ let m1 = const$ || (const$ = dart.const(dart.map({"[object Object]": 0, "1": 1}, core.String, core.int)));
expect$.Expect.isFalse(m1[dartx.containsKey](new core.Object()));
expect$.Expect.isNull(m1[dartx.get](new core.Object()));
expect$.Expect.isFalse(m1[dartx.containsKey](1));
expect$.Expect.isNull(m1[dartx.get](1));
- let m2 = const$0 || (const$0 = dart.const(dart.map({"[object Object]": 0, "1": 1, __proto__: 2})));
+ let m2 = const$0 || (const$0 = dart.const(dart.map({"[object Object]": 0, "1": 1, __proto__: 2}, core.String, core.int)));
expect$.Expect.isFalse(m2[dartx.containsKey](new core.Object()));
expect$.Expect.isNull(m2[dartx.get](new core.Object()));
expect$.Expect.isFalse(m2[dartx.containsKey](1));
« no previous file with comments | « test/codegen_expected/language/map_literal7_test.js ('k') | test/codegen_expected/language/map_literal_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698