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

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

Issue 1421723002: Require that injected members are private. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « pkg/compiler/lib/src/patch_parser.dart ('k') | sdk/lib/_internal/js_runtime/lib/collection_patch.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/js_runtime/lib/async_patch.dart
diff --git a/sdk/lib/_internal/js_runtime/lib/async_patch.dart b/sdk/lib/_internal/js_runtime/lib/async_patch.dart
index 1155e79f76964886ed61ab0c2006b9ed1c5e292f..de6940a68793edc95de35615496c411542ccc6dd 100644
--- a/sdk/lib/_internal/js_runtime/lib/async_patch.dart
+++ b/sdk/lib/_internal/js_runtime/lib/async_patch.dart
@@ -27,11 +27,11 @@ import 'dart:_async_await_error_codes' as async_error_codes;
class _AsyncRun {
@patch
static void _scheduleImmediate(void callback()) {
- scheduleImmediateClosure(callback);
+ _scheduleImmediateClosure(callback);
}
// Lazily initialized.
- static final Function scheduleImmediateClosure =
+ static final Function _scheduleImmediateClosure =
_initializeScheduleImmediate();
static Function _initializeScheduleImmediate() {
« no previous file with comments | « pkg/compiler/lib/src/patch_parser.dart ('k') | sdk/lib/_internal/js_runtime/lib/collection_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698