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

Unified Diff: test/codegen_expected/corelib/apply_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/corelib/apply_test.js
diff --git a/test/codegen_expected/corelib/apply_test.js b/test/codegen_expected/corelib/apply_test.js
index 2f3d40169bbab80bcb0c65cafa8a8071ab3620a7..6ed5b1d2a2d9384646d1f44e225bed9de660aa11 100644
--- a/test/codegen_expected/corelib/apply_test.js
+++ b/test/codegen_expected/corelib/apply_test.js
@@ -103,11 +103,11 @@ dart_library.library('corelib/apply_test', null, /* Imports */[
dart.fn(test, dynamicAnddynamicAnddynamic__Todynamic());
testList(42, apply_test.test0, null);
testList(42, apply_test.test0, []);
- testMap(42, apply_test.test0a, dart.map({a: 5}));
+ testMap(42, apply_test.test0a, dart.map({a: 5}, core.String, core.int));
testList(42, apply_test.test1, JSArrayOfint().of([41]));
- test(42, apply_test.test1a, JSArrayOfint().of([20]), dart.map({a: 22}));
+ test(42, apply_test.test1a, JSArrayOfint().of([20]), dart.map({a: 22}, core.String, core.int));
testList(42, apply_test.test2, JSArrayOfint().of([20, 22]));
- test(42, apply_test.test2a, JSArrayOfint().of([10, 15]), dart.map({a: 17}));
+ test(42, apply_test.test2a, JSArrayOfint().of([10, 15]), dart.map({a: 17}, core.String, core.int));
let cfoo = dart.bind(new apply_test.C(), 'foo');
testList(42, cfoo, JSArrayOfint().of([32]));
let app = apply_test.confuse(core.Function.apply);
« no previous file with comments | « test/codegen_expected/corelib/apply2_test.js ('k') | test/codegen_expected/corelib/collection_to_string_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698