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

Unified Diff: sdk/lib/core/function.dart

Issue 2754013002: Format all dart: library files (Closed)
Patch Set: Format all dart: library files Created 3 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 | « sdk/lib/core/expando.dart ('k') | sdk/lib/core/int.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/core/function.dart
diff --git a/sdk/lib/core/function.dart b/sdk/lib/core/function.dart
index a349c361dce3e81330f0ad7ce4df60c9c14d78ce..5a64e96bb3f3e93bb32227d155029ac1782f541d 100644
--- a/sdk/lib/core/function.dart
+++ b/sdk/lib/core/function.dart
@@ -33,9 +33,8 @@ 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.
*/
- external static apply(Function function,
- List positionalArguments,
- [Map<Symbol, dynamic> namedArguments]);
+ external static apply(Function function, List positionalArguments,
+ [Map<Symbol, dynamic> namedArguments]);
/**
* Returns a hash code value that is compatible with `operator==`.
@@ -63,5 +62,5 @@ abstract class Function {
* Classes implementing `Function` by having a `call` method should have their
* own `operator==` and `hashCode` depending on the object.
*/
- bool operator==(Object other);
+ bool operator ==(Object other);
}
« no previous file with comments | « sdk/lib/core/expando.dart ('k') | sdk/lib/core/int.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698