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

Unified Diff: test/codegen_expected/language/first_class_types_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/first_class_types_test.js
diff --git a/test/codegen_expected/language/first_class_types_test.js b/test/codegen_expected/language/first_class_types_test.js
index 7ee96e0ef448c95b80f8c71d5e05021adb1081cb..b9f8165503b60d55194d64072b78d23cbde2475c 100644
--- a/test/codegen_expected/language/first_class_types_test.js
+++ b/test/codegen_expected/language/first_class_types_test.js
@@ -46,7 +46,7 @@ dart_library.library('language/first_class_types_test', null, /* Imports */[
first_class_types_test.sameType(1.2, d);
first_class_types_test.sameType(false, b);
let l = JSArrayOfint().of([1, 2, 3]);
- let m = dart.map({a: 1, b: 2});
+ let m = dart.map({a: 1, b: 2}, core.String, core.int);
first_class_types_test.sameType([], l);
first_class_types_test.sameType(dart.map(), m);
first_class_types_test.sameType(ListOfint().new(), ListOfint().new());

Powered by Google App Engine
This is Rietveld 408576698