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

Unified Diff: lib/runtime/dart/_internal.js

Issue 1150623004: Fix names in named parameter lists (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 7 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 | « lib/runtime/dart/_interceptors.js ('k') | lib/runtime/dart/_isolate_helper.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/_internal.js
diff --git a/lib/runtime/dart/_internal.js b/lib/runtime/dart/_internal.js
index a5821ad0fec16c33aff40c3859df6b78685189a4..4d31ecd90ce567ef3205b663570481a18c60f603 100644
--- a/lib/runtime/dart/_internal.js
+++ b/lib/runtime/dart/_internal.js
@@ -244,8 +244,8 @@ var _js_primitives = dart.lazyImport(_js_primitives);
[core.$forEach]: [dart.void, [dart.functionType(dart.void, [E])]],
[core.$every]: [core.bool, [dart.functionType(core.bool, [E])]],
[core.$any]: [core.bool, [dart.functionType(core.bool, [E])]],
- [core.$firstWhere]: [E, [dart.functionType(core.bool, [E])], {rEls: dart.functionType(E, [])}],
- [core.$lastWhere]: [E, [dart.functionType(core.bool, [E])], {rEls: dart.functionType(E, [])}],
+ [core.$firstWhere]: [E, [dart.functionType(core.bool, [E])], {orElse: dart.functionType(E, [])}],
+ [core.$lastWhere]: [E, [dart.functionType(core.bool, [E])], {orElse: dart.functionType(E, [])}],
[core.$singleWhere]: [E, [dart.functionType(core.bool, [E])]],
[core.$where]: [core.Iterable$(E), [dart.functionType(core.bool, [E])]],
[core.$map]: [core.Iterable, [dart.functionType(core.Object, [E])]],
@@ -255,7 +255,7 @@ var _js_primitives = dart.lazyImport(_js_primitives);
[core.$skipWhile]: [core.Iterable$(E), [dart.functionType(core.bool, [E])]],
[core.$take]: [core.Iterable$(E), [core.int]],
[core.$takeWhile]: [core.Iterable$(E), [dart.functionType(core.bool, [E])]],
- [core.$toList]: [core.List$(E), [], {rowabl: core.bool}],
+ [core.$toList]: [core.List$(E), [], {growable: core.bool}],
[core.$toSet]: [core.Set$(E), []]
})
});
@@ -357,7 +357,7 @@ var _js_primitives = dart.lazyImport(_js_primitives);
[core.$elementAt]: [E, [core.int]],
[core.$skip]: [core.Iterable$(E), [core.int]],
[core.$take]: [core.Iterable$(E), [core.int]],
- [core.$toList]: [core.List$(E), [], {rowabl: core.bool}]
+ [core.$toList]: [core.List$(E), [], {growable: core.bool}]
})
});
return SubListIterable;
@@ -996,9 +996,9 @@ var _js_primitives = dart.lazyImport(_js_primitives);
[core.$elementAt]: [E, [core.int]],
[core.$every]: [core.bool, [dart.functionType(core.bool, [E])]],
[core.$any]: [core.bool, [dart.functionType(core.bool, [E])]],
- [core.$firstWhere]: [E, [dart.functionType(core.bool, [E])], {rEls: dart.functionType(E, [])}],
- [core.$lastWhere]: [E, [dart.functionType(core.bool, [E])], {rEls: dart.functionType(E, [])}],
- [core.$singleWhere]: [E, [dart.functionType(core.bool, [E])], {rEls: dart.functionType(E, [])}],
+ [core.$firstWhere]: [E, [dart.functionType(core.bool, [E])], {orElse: dart.functionType(E, [])}],
+ [core.$lastWhere]: [E, [dart.functionType(core.bool, [E])], {orElse: dart.functionType(E, [])}],
+ [core.$singleWhere]: [E, [dart.functionType(core.bool, [E])], {orElse: dart.functionType(E, [])}],
[core.$where]: [core.Iterable$(E), [dart.functionType(core.bool, [E])]],
[core.$map]: [core.Iterable, [dart.functionType(core.Object, [E])]],
[core.$reduce]: [E, [dart.functionType(E, [E, E])]],
@@ -1007,7 +1007,7 @@ var _js_primitives = dart.lazyImport(_js_primitives);
[core.$skipWhile]: [core.Iterable$(E), [dart.functionType(core.bool, [E])]],
[core.$take]: [core.Iterable$(E), [core.int]],
[core.$takeWhile]: [core.Iterable$(E), [dart.functionType(core.bool, [E])]],
- [core.$toList]: [core.List$(E), [], {rowabl: core.bool}],
+ [core.$toList]: [core.List$(E), [], {growable: core.bool}],
[core.$toSet]: [core.Set$(E), []]
})
});
« no previous file with comments | « lib/runtime/dart/_interceptors.js ('k') | lib/runtime/dart/_isolate_helper.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698