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

Unified Diff: test/codegen_expected/language/identical_const_test_08_multi.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/identical_const_test_08_multi.js
diff --git a/test/codegen_expected/language/identical_const_test_08_multi.js b/test/codegen_expected/language/identical_const_test_08_multi.js
index fe5c6db07265efc51ad9739db6bf9ebf9e438b6d..3d4b35d2ccef39593b3fc838c02aff933cf449a0 100644
--- a/test/codegen_expected/language/identical_const_test_08_multi.js
+++ b/test/codegen_expected/language/identical_const_test_08_multi.js
@@ -18,8 +18,8 @@ dart_library.library('language/identical_const_test_08_multi', null, /* Imports
identical_const_test_08_multi.identical_fg = core.identical(identical_const_test_08_multi.f, identical_const_test_08_multi.g);
identical_const_test_08_multi.identical_gf = core.identical(identical_const_test_08_multi.g, identical_const_test_08_multi.f);
identical_const_test_08_multi.identical_gg = core.identical(identical_const_test_08_multi.g, identical_const_test_08_multi.g);
- identical_const_test_08_multi.a = dart.const(dart.map([true, 0]));
- identical_const_test_08_multi.b = dart.const(dart.map([false, 0]));
+ identical_const_test_08_multi.a = dart.const(dart.map([true, 0], core.bool, core.int));
+ identical_const_test_08_multi.b = dart.const(dart.map([false, 0], core.bool, core.int));
identical_const_test_08_multi.use = function(x) {
return x;
};

Powered by Google App Engine
This is Rietveld 408576698