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

Unified Diff: lib/runtime/dart/_js_helper.js

Issue 1200233004: fixes #168, dart:js implementation with a test (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: fix error (window not defined) Created 5 years, 6 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 | « lib/runtime/dart/_isolate_helper.js ('k') | lib/runtime/dart/async.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/_js_helper.js
diff --git a/lib/runtime/dart/_js_helper.js b/lib/runtime/dart/_js_helper.js
index 8d21b5f9358b62b28d28f91cafcda3775c3a123a..fb55efec55e4d150d5598429e4da45de7e43890f 100644
--- a/lib/runtime/dart/_js_helper.js
+++ b/lib/runtime/dart/_js_helper.js
@@ -1033,10 +1033,6 @@ dart_library.library('dart/_js_helper', null, /* Imports */[
return result;
}
dart.fn(fillLiteralMap, dart.dynamic, [dart.dynamic, core.Map]);
- function convertDartClosureToJS(closure, arity) {
- return closure;
- }
- dart.fn(convertDartClosureToJS, dart.dynamic, [dart.dynamic, core.int]);
function jsHasOwnProperty(jsObject, property) {
return jsObject.hasOwnProperty(property);
}
@@ -1187,7 +1183,6 @@ dart_library.library('dart/_js_helper', null, /* Imports */[
exports.getTraceFromException = getTraceFromException;
exports.objectHashCode = objectHashCode;
exports.fillLiteralMap = fillLiteralMap;
- exports.convertDartClosureToJS = convertDartClosureToJS;
exports.jsHasOwnProperty = jsHasOwnProperty;
exports.jsPropertyAccess = jsPropertyAccess;
exports.getFallThroughError = getFallThroughError;
« no previous file with comments | « lib/runtime/dart/_isolate_helper.js ('k') | lib/runtime/dart/async.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698