Index: lib/runtime/dart_runtime.js |
diff --git a/lib/runtime/dart_runtime.js b/lib/runtime/dart_runtime.js |
index 98ed2297dc9e57b76be1e86ed400da1b2a2ecf95..e80d4131cb47fdc4875ba813d3ce4138913a2326 100644 |
--- a/lib/runtime/dart_runtime.js |
+++ b/lib/runtime/dart_runtime.js |
@@ -54,6 +54,8 @@ var dart, _js_helper; |
throwNoSuchMethod(obj, method, args); |
} |
} |
+ // TODO(jmesserly): enable this when we can fix => and methods. |
+ /* |
let formals = formalParameterList(f); |
// TODO(vsm): Type check args! We need to encode sufficient type info on f. |
if (formals.length < args.length) { |
@@ -65,6 +67,7 @@ var dart, _js_helper; |
} |
} |
} |
+ */ |
return f.apply(obj, args); |
} |