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

Unified Diff: test/codegen_expected/corelib/map_keys2_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
« no previous file with comments | « test/codegen_expected/corelib/map_from_test.js ('k') | test/codegen_expected/corelib/map_keys_test.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen_expected/corelib/map_keys2_test.js
diff --git a/test/codegen_expected/corelib/map_keys2_test.js b/test/codegen_expected/corelib/map_keys2_test.js
index 7c7239a7cc32b397ed05fba6d3e94a704abbea2f..0d39f56114966132849f4b4766fb640b8ceb3cf0 100644
--- a/test/codegen_expected/corelib/map_keys2_test.js
+++ b/test/codegen_expected/corelib/map_keys2_test.js
@@ -16,9 +16,9 @@ dart_library.library('corelib/map_keys2_test', null, /* Imports */[
let const$;
let const$0;
map_keys2_test.main = function() {
- let map1 = dart.map({foo: 42, bar: 499});
+ let map1 = dart.map({foo: 42, bar: 499}, core.String, core.int);
let map2 = dart.map();
- let map3 = const$ || (const$ = dart.const(dart.map({foo: 42, bar: 499})));
+ let map3 = const$ || (const$ = dart.const(dart.map({foo: 42, bar: 499}, core.String, core.int)));
let map4 = const$0 || (const$0 = dart.const(dart.map()));
let map5 = MapOfString$int().new();
map5[dartx.set]("foo", 43);
« no previous file with comments | « test/codegen_expected/corelib/map_from_test.js ('k') | test/codegen_expected/corelib/map_keys_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698