Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(174)

Unified Diff: sdk/lib/_internal/js_runtime/lib/isolate_helper.dart

Issue 1232463007: dart2js: Rename "current isolate" to "static state (holder)". (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}
/**

Powered by Google App Engine
This is Rietveld 408576698