| Index: dart/sdk/lib/_internal/compiler/implementation/lib/foreign_helper.dart
|
| diff --git a/dart/sdk/lib/_internal/compiler/implementation/lib/foreign_helper.dart b/dart/sdk/lib/_internal/compiler/implementation/lib/foreign_helper.dart
|
| index 97700a7bee865515680cfd605f294e0d467fc2a9..ac14c322a98fc27e80307b78b9beacdb3bf1bda3 100644
|
| --- a/dart/sdk/lib/_internal/compiler/implementation/lib/foreign_helper.dart
|
| +++ b/dart/sdk/lib/_internal/compiler/implementation/lib/foreign_helper.dart
|
| @@ -96,7 +96,13 @@ dynamic JS(String typeDescription, String codeTemplate,
|
| /**
|
| * Returns the isolate in which this code is running.
|
| */
|
| -dynamic JS_CURRENT_ISOLATE() {}
|
| +IsolateContext JS_CURRENT_ISOLATE() {}
|
| +
|
| +abstract class IsolateContext {
|
| + /// Holds a (native) JavaScript instance of Isolate, see
|
| + /// finishIsolateConstructorFunction in emitter.dart.
|
| + get isolateStatics;
|
| +}
|
|
|
| /**
|
| * Invokes [function] in the context of [isolate].
|
|
|