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

Unified Diff: pkg/dev_compiler/tool/input_sdk/private/foreign_helper.dart

Issue 2752163002: Format all dart dev compiler files (Closed)
Patch Set: 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
Index: pkg/dev_compiler/tool/input_sdk/private/foreign_helper.dart
diff --git a/pkg/dev_compiler/tool/input_sdk/private/foreign_helper.dart b/pkg/dev_compiler/tool/input_sdk/private/foreign_helper.dart
index b738e812ff6cf145eacec5a1b54eddda755bc28b..c8dcc6b29cab43c759d29c371df3778c074afc7e 100644
--- a/pkg/dev_compiler/tool/input_sdk/private/foreign_helper.dart
+++ b/pkg/dev_compiler/tool/input_sdk/private/foreign_helper.dart
@@ -107,8 +107,18 @@ library dart._foreign_helper;
// Add additional optional arguments if needed. The method is treated internally
// as a variable argument method.
JS(String typeDescription, String codeTemplate,
- [arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11])
-{}
+ [arg0,
+ arg1,
+ arg2,
+ arg3,
+ arg4,
+ arg5,
+ arg6,
+ arg7,
+ arg8,
+ arg9,
+ arg10,
+ arg11]) {}
/// Annotates the compiled Js name for fields and methods.
/// Similar behaviour to `JS` from `package:js/js.dart` (but usable from runtime
@@ -257,7 +267,9 @@ bool JS_GET_FLAG(String name) {}
* TODO(sra): Replace this hack with something to mark the volatile or
* externally initialized elements.
*/
-void JS_EFFECT(Function code) { code(null); }
+void JS_EFFECT(Function code) {
+ code(null);
+}
/**
* Use this class for creating constants that hold JavaScript code.
@@ -294,7 +306,6 @@ class _Rest {
const _Rest rest = const _Rest();
dynamic spread(args) {
- throw new StateError(
- 'The spread function cannot be called, '
+ throw new StateError('The spread function cannot be called, '
'it should be compiled away.');
}

Powered by Google App Engine
This is Rietveld 408576698