From 61c3c262e7cd660f7eeeee23143cd3205cccb654 Mon Sep 17 00:00:00 2001 From: "sigmund@google.com" Date: Thu, 26 Apr 2012 16:55:03 +0000 Subject: [PATCH] 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 --- lib/isolate/isolate_leg.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/isolate/isolate_leg.dart b/lib/isolate/isolate_leg.dart index a80e7fd8ffc..d953b9ad0af 100644 --- a/lib/isolate/isolate_leg.dart +++ b/lib/isolate/isolate_leg.dart @@ -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(); }