Index: compiler/lib/implementation/isolate.js |
diff --git a/compiler/lib/implementation/isolate.js b/compiler/lib/implementation/isolate.js |
index 38109702232de2fbd316b8d738731f99663d763b..ade42a0e9a68a1b2cb01572433fdfe43d1b7e88e 100644 |
--- a/compiler/lib/implementation/isolate.js |
+++ b/compiler/lib/implementation/isolate.js |
@@ -301,18 +301,6 @@ function native_IsolateNatives__spawn(runnable, light, replyPort) { |
} |
} |
-function native_IsolateNatives_bind(fn) { |
- var isolate = isolate$current; |
- return function() { |
- var self = this; |
- var args = arguments; |
- isolate.run(function() { |
- fn.apply(self, args); |
- }); |
- isolate$runEventLoop(); |
- }; |
-} |
- |
function isolate$startNonWorker(runnable, replyTo) { |
// Spawn a new isolate and create the receive port in it. |
var spawned = new isolate$Isolate(); |