e11ca24053
Annotate patch classes and top-level patch functions with @patch instead of the pseudo-keyword patch. This allows the analyzer to read patch files, and matches the syntax that dart2js uses. The deprecated syntax is still supported, but a warning is printed when detected. BUG= Review URL: https://codereview.chromium.org/2220883004 .
23 lines
723 B
Dart
23 lines
723 B
Dart
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
@patch class _AsyncRun {
|
|
/* @patch */ static void _scheduleImmediate(void callback()) {
|
|
if (_ScheduleImmediate._closure == null) {
|
|
throw new UnsupportedError("Microtasks are not supported");
|
|
}
|
|
_ScheduleImmediate._closure(callback);
|
|
}
|
|
}
|
|
|
|
typedef void _ScheduleImmediateClosure(void callback());
|
|
|
|
class _ScheduleImmediate {
|
|
static _ScheduleImmediateClosure _closure;
|
|
}
|
|
|
|
void _setScheduleImmediateClosure(_ScheduleImmediateClosure closure) {
|
|
_ScheduleImmediate._closure = closure;
|
|
}
|