Chromium Code Reviews| Index: runtime/lib/isolate_patch.dart |
| diff --git a/runtime/lib/isolate_patch.dart b/runtime/lib/isolate_patch.dart |
| index 100d951a647eff1d70e0cb69176bc54a1a069e32..1fd87bfb0c142f09ad62874bbae6a54c2a9d2e66 100644 |
| --- a/runtime/lib/isolate_patch.dart |
| +++ b/runtime/lib/isolate_patch.dart |
| @@ -303,8 +303,7 @@ patch class Isolate { |
| /* patch */ static Future<Isolate> spawnUri( |
| Uri uri, List<String> args, var message, |
| - { bool paused: false, Uri packageRoot }) { |
| - // `paused` isn't handled yet. |
| + { bool paused: false, bool checked, Uri packageRoot }) { |
|
Ivan Posva
2015/06/02 17:49:31
I assume we will add the package spec file Uri in
Lasse Reichstein Nielsen
2015/06/03 06:55:25
As do I.
|
| RawReceivePort readyPort; |
| try { |
| // The VM will invoke [_startIsolate] and not `main`. |
| @@ -312,7 +311,7 @@ patch class Isolate { |
| var packageRootString = |
| (packageRoot == null) ? null : packageRoot.toString(); |
| _spawnUri(readyPort.sendPort, uri.toString(), args, message, |
| - paused, packageRootString); |
| + paused, checked, packageRootString); |
| Completer completer = new Completer<Isolate>.sync(); |
| readyPort.handler = (readyMessage) { |
| readyPort.close(); |
| @@ -354,7 +353,7 @@ patch class Isolate { |
| static void _spawnUri(SendPort readyPort, String uri, |
| List<String> args, var message, |
| - bool paused, String packageRoot) |
| + bool paused, bool checked, String packageRoot) |
| native "Isolate_spawnUri"; |
| static void _sendOOB(port, msg) native "Isolate_sendOOB"; |