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

Unified Diff: test/codegen_expected/language/parse_closures_in_initializers_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/parse_closures_in_initializers_test.js
diff --git a/test/codegen_expected/language/parse_closures_in_initializers_test.js b/test/codegen_expected/language/parse_closures_in_initializers_test.js
index cc7d105797d3869c379ddc4804f84b7bb5c460b9..1fdb9be79c8b9ff78c60b855e5a65a7a237d32b6 100644
--- a/test/codegen_expected/language/parse_closures_in_initializers_test.js
+++ b/test/codegen_expected/language/parse_closures_in_initializers_test.js
@@ -26,7 +26,7 @@ dart_library.library('language/parse_closures_in_initializers_test', null, /* Im
this.x = JSArrayOfVoidTodynamic().of([dart.fn(() => y, VoidTodynamic$())]);
}
mapLiteral(y) {
- this.x = dart.map({fun: dart.fn(() => y, VoidTodynamic$())});
+ this.x = dart.map({fun: dart.fn(() => y, VoidTodynamic$())}, core.String, VoidTodynamic());
}
arg(y) {
this.x = parse_closures_in_initializers_test.A.foo(dart.fn(() => y, VoidTodynamic$()));
« no previous file with comments | « test/codegen_expected/language/ordered_maps_test.js ('k') | test/codegen_expected/language/regress_23046_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698