isolate-leg: fix typo in type signature.

Review URL: https://chromiumcodereview.appspot.com//10174022

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@7030 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
sigmund@google.com
2012-04-26 16:55:03 +00:00
parent 2c0555c3c8
commit 61c3c262e7
+1 -1
View File
@@ -47,7 +47,7 @@
* Called by the compiler to support switching
* between isolates when we get a callback from the DOM.
*/
void _callInIsolate(IsolateContext isolate, Function function) {
void _callInIsolate(_IsolateContext isolate, Function function) {
isolate.eval(function);
_globalState.topEventLoop.run();
}