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

Unified Diff: test/codegen_expected/language/ct_const2_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/ct_const2_test.js
diff --git a/test/codegen_expected/language/ct_const2_test.js b/test/codegen_expected/language/ct_const2_test.js
index 1b6edf6b4a37ecb0c4a2588bbfcc7250ec0e9d91..6b505131a63439724c159129821a0078a988ffd7 100644
--- a/test/codegen_expected/language/ct_const2_test.js
+++ b/test/codegen_expected/language/ct_const2_test.js
@@ -14,7 +14,7 @@ dart_library.library('language/ct_const2_test', null, /* Imports */[
ct_const2_test.h = 15;
ct_const2_test.n = null;
ct_const2_test.aList = dart.constList([1, 2, 3], core.int);
- ct_const2_test.aMap = dart.const(dart.map({"1": "one", "2": "banana"}));
+ ct_const2_test.aMap = dart.const(dart.map({"1": "one", "2": "banana"}, core.String, core.String));
ct_const2_test.INT_LIT = 5;
ct_const2_test.INT_LIT_REF = ct_const2_test.INT_LIT;
ct_const2_test.DOUBLE_LIT = 1.5;
« no previous file with comments | « test/codegen_expected/language/const_map_test.js ('k') | test/codegen_expected/language/deferred_static_seperate_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698