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

Unified Diff: test/codegen_expected/corelib/expando_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
« no previous file with comments | « test/codegen_expected/corelib/data_uri_test.js ('k') | test/codegen_expected/corelib/json_map_test.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen_expected/corelib/expando_test.js
diff --git a/test/codegen_expected/corelib/expando_test.js b/test/codegen_expected/corelib/expando_test.js
index 57f103fe8e5a418f3a5aab1a179ac33dcae630d1..07e18aa85d89089a9de3ad6bff61ee421ee65bd6 100644
--- a/test/codegen_expected/corelib/expando_test.js
+++ b/test/codegen_expected/corelib/expando_test.js
@@ -20,7 +20,7 @@ dart_library.library('corelib/expando_test', null, /* Imports */[
expando_test.ExpandoTest = class ExpandoTest extends core.Object {
static testMain() {
expando_test.ExpandoTest.visits = new (ExpandoOfint())('visits');
- let legal = JSArrayOfObject().of([new core.Object(), core.List.new(), JSArrayOfint().of([1, 2, 3]), const$ || (const$ = dart.constList([1, 2, 3], core.int)), core.Map.new(), dart.map({x: 1, y: 2}), const$0 || (const$0 = dart.const(dart.map({x: 1, y: 2}))), new core.Expando(), new core.Expando('horse')]);
+ let legal = JSArrayOfObject().of([new core.Object(), core.List.new(), JSArrayOfint().of([1, 2, 3]), const$ || (const$ = dart.constList([1, 2, 3], core.int)), core.Map.new(), dart.map({x: 1, y: 2}, core.String, core.int), const$0 || (const$0 = dart.const(dart.map({x: 1, y: 2}, core.String, core.int))), new core.Expando(), new core.Expando('horse')]);
for (let object of legal) {
expando_test.ExpandoTest.testNamedExpando(object);
expando_test.ExpandoTest.testUnnamedExpando(object);
« no previous file with comments | « test/codegen_expected/corelib/data_uri_test.js ('k') | test/codegen_expected/corelib/json_map_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698