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

Unified Diff: test/generated_sdk/lib/core/function.dart

Issue 1020043002: Replace dart_core.js with actual compiled SDK (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: merge Created 5 years, 9 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/generated_sdk/lib/core/core.dart ('k') | test/generated_sdk/lib/core/int.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/generated_sdk/lib/core/function.dart
diff --git a/test/generated_sdk/lib/core/function.dart b/test/generated_sdk/lib/core/function.dart
index f1f73bd0a5e89d573eb56903b85ee42dca8c23d3..1e73839566f78d6f7190da5632e2d2e6d32a41d7 100644
--- a/test/generated_sdk/lib/core/function.dart
+++ b/test/generated_sdk/lib/core/function.dart
@@ -33,11 +33,11 @@ abstract class Function {
* If [positionalArguments] is null, it's considered an empty list.
* If [namedArguments] is omitted or null, it is considered an empty map.
*/
- static apply(Function function,
+ static apply(Function f,
List positionalArguments,
[Map<Symbol, dynamic> namedArguments]) {
return Primitives.applyFunction(
- function, positionalArguments,
+ f, positionalArguments,
namedArguments == null ? null : _toMangledNames(namedArguments));
}
« no previous file with comments | « test/generated_sdk/lib/core/core.dart ('k') | test/generated_sdk/lib/core/int.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698