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

Unified Diff: sdk/lib/js_util/dartium/js_util_dartium.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/js/dartium/cached_patches.dart ('k') | sdk/lib/math/jenkins_smi_hash.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/js_util/dartium/js_util_dartium.dart
diff --git a/sdk/lib/js_util/dartium/js_util_dartium.dart b/sdk/lib/js_util/dartium/js_util_dartium.dart
index 77386dccf778c5095a0af0986618079203605cb0..ed9f8049243671a385fb0100278b2aab27517606 100644
--- a/sdk/lib/js_util/dartium/js_util_dartium.dart
+++ b/sdk/lib/js_util/dartium/js_util_dartium.dart
@@ -33,6 +33,8 @@ JSObject newObject() => JsNative.newObject();
hasProperty(JSObject o, name) => JsNative.hasProperty(o, name);
getProperty(JSObject o, name) => JsNative.getProperty(o, name);
setProperty(JSObject o, name, value) => JsNative.setProperty(o, name, value);
-callMethod(JSObject o, String method, List args) => JsNative.callMethod(o, method, args);
+callMethod(JSObject o, String method, List args) =>
+ JsNative.callMethod(o, method, args);
instanceof(JSObject o, Function type) => JsNative.instanceof(o, type);
-callConstructor(JSObject constructor, List args) => JsNative.callConstructor(constructor, args);
+callConstructor(JSObject constructor, List args) =>
+ JsNative.callConstructor(constructor, args);
« no previous file with comments | « sdk/lib/js/dartium/cached_patches.dart ('k') | sdk/lib/math/jenkins_smi_hash.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698