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

Unified Diff: lib/runtime/dart/_foreign_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/_operations.js ('k') | lib/runtime/dart/_isolate_helper.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/_foreign_helper.js
diff --git a/lib/runtime/dart/_foreign_helper.js b/lib/runtime/dart/_foreign_helper.js
index 5479ae14ec96072d31d2ca7426371eeb1f7cd56a..166c7e190744f5463d6862e98106bf8312821187 100644
--- a/lib/runtime/dart/_foreign_helper.js
+++ b/lib/runtime/dart/_foreign_helper.js
@@ -39,12 +39,6 @@ dart_library.library('dart/_foreign_helper', null, /* Imports */[
function JS_CALL_IN_ISOLATE(isolate, func) {
}
dart.fn(JS_CALL_IN_ISOLATE, dart.dynamic, [dart.dynamic, core.Function]);
- function DART_CLOSURE_TO_JS(func) {
- }
- dart.fn(DART_CLOSURE_TO_JS, dart.dynamic, [core.Function]);
- function RAW_DART_FUNCTION_REF(func) {
- }
- dart.fn(RAW_DART_FUNCTION_REF, dart.dynamic, [core.Function]);
function JS_SET_CURRENT_ISOLATE(isolate) {
}
dart.fn(JS_SET_CURRENT_ISOLATE, dart.void, [dart.dynamic]);
@@ -132,8 +126,6 @@ dart_library.library('dart/_foreign_helper', null, /* Imports */[
exports.JS_CURRENT_ISOLATE_CONTEXT = JS_CURRENT_ISOLATE_CONTEXT;
exports.IsolateContext = IsolateContext;
exports.JS_CALL_IN_ISOLATE = JS_CALL_IN_ISOLATE;
- exports.DART_CLOSURE_TO_JS = DART_CLOSURE_TO_JS;
- exports.RAW_DART_FUNCTION_REF = RAW_DART_FUNCTION_REF;
exports.JS_SET_CURRENT_ISOLATE = JS_SET_CURRENT_ISOLATE;
exports.JS_CREATE_ISOLATE = JS_CREATE_ISOLATE;
exports.JS_DART_OBJECT_CONSTRUCTOR = JS_DART_OBJECT_CONSTRUCTOR;
« no previous file with comments | « lib/runtime/_operations.js ('k') | lib/runtime/dart/_isolate_helper.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698