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

Unified Diff: test/codegen_expected/language/canonical_const_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/canonical_const_test.js
diff --git a/test/codegen_expected/language/canonical_const_test.js b/test/codegen_expected/language/canonical_const_test.js
index 2791c0f03bed8d2f7636a97b1fadc35d08cd710c..20d1eb7ccc2efaaf51ebc0128489df8018ffb508 100644
--- a/test/codegen_expected/language/canonical_const_test.js
+++ b/test/codegen_expected/language/canonical_const_test.js
@@ -49,8 +49,8 @@ dart_library.library('language/canonical_const_test', null, /* Imports */[
expect$.Expect.identical(const$11 || (const$11 = dart.constList([1, 2], core.int)), const$12 || (const$12 = dart.constList([1, 2], core.int)));
expect$.Expect.identical(const$13 || (const$13 = dart.constList([1, 2], core.Object)), const$14 || (const$14 = dart.constList([1, 2], core.Object)));
expect$.Expect.isFalse(core.identical(const$15 || (const$15 = dart.constList([1, 2], core.int)), const$16 || (const$16 = dart.constList([1.0, 2.0], core.double))));
- expect$.Expect.identical(const$17 || (const$17 = dart.const(dart.map({a: 1, b: 2}))), const$18 || (const$18 = dart.const(dart.map({a: 1, b: 2}))));
- expect$.Expect.isFalse(core.identical(const$19 || (const$19 = dart.const(dart.map({a: 1, b: 2}))), const$20 || (const$20 = dart.const(dart.map({a: 2, b: 2})))));
+ expect$.Expect.identical(const$17 || (const$17 = dart.const(dart.map({a: 1, b: 2}, core.String, core.int))), const$18 || (const$18 = dart.const(dart.map({a: 1, b: 2}, core.String, core.int))));
+ expect$.Expect.isFalse(core.identical(const$19 || (const$19 = dart.const(dart.map({a: 1, b: 2}, core.String, core.int))), const$20 || (const$20 = dart.const(dart.map({a: 2, b: 2}, core.String, core.int)))));
}
};
dart.setSignature(canonical_const_test.CanonicalConstTest, {

Powered by Google App Engine
This is Rietveld 408576698