Chromium Code Reviews| Index: sdk/lib/_internal/js_runtime/lib/isolate_helper.dart |
| diff --git a/sdk/lib/_internal/js_runtime/lib/isolate_helper.dart b/sdk/lib/_internal/js_runtime/lib/isolate_helper.dart |
| index e3f13bff076baa03c518ac68d1073c3d3582d0c5..b4335baeab9d20ed0dde7405fdadf2fe5bd31e3a 100644 |
| --- a/sdk/lib/_internal/js_runtime/lib/isolate_helper.dart |
| +++ b/sdk/lib/_internal/js_runtime/lib/isolate_helper.dart |
| @@ -31,9 +31,9 @@ import 'dart:_js_helper' show |
| import 'dart:_foreign_helper' show DART_CLOSURE_TO_JS, |
| JS, |
| JS_CURRENT_ISOLATE_CONTEXT, |
| - JS_CURRENT_ISOLATE, |
|
herhut
2015/07/10 13:56:21
is this needed?
floitsch
2015/09/16 15:24:24
done.
|
| + JS_STATIC_STATE, |
| JS_EMBEDDED_GLOBAL, |
| - JS_SET_CURRENT_ISOLATE, |
| + JS_SET_STATIC_STATE, |
| IsolateContext; |
| import 'dart:_interceptors' show Interceptor, |
| @@ -482,7 +482,7 @@ class _IsolateContext implements IsolateContext { |
| } |
| void _setGlobals() { |
| - JS_SET_CURRENT_ISOLATE(isolateStatics); |
| + JS_SET_STATIC_STATE(isolateStatics); |
| } |
| /** |