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); |