| Index: sdk/lib/_internal/js_runtime/lib/annotations.dart
|
| diff --git a/sdk/lib/_internal/js_runtime/lib/annotations.dart b/sdk/lib/_internal/js_runtime/lib/annotations.dart
|
| index 0ade22151b95fae28989cdce2c87d986d9a23743..ee33493fe7c0a35d24832af7f2dd1261058b6dcb 100644
|
| --- a/sdk/lib/_internal/js_runtime/lib/annotations.dart
|
| +++ b/sdk/lib/_internal/js_runtime/lib/annotations.dart
|
| @@ -51,8 +51,8 @@ class _Patch {
|
| /// Annotation that marks the declaration as a patch.
|
| const _Patch patch = const _Patch(null);
|
|
|
| -/// Annotation that marks the declaration as a patch for the old emitter.
|
| -const _Patch patch_old = const _Patch('old');
|
| +/// Annotation that marks the declaration as a patch for the full emitter.
|
| +const _Patch patch_full = const _Patch('full');
|
|
|
| -/// Annotation that marks the declaration as a patch for the new emitter.
|
| -const _Patch patch_new = const _Patch('new');
|
| +/// Annotation that marks the declaration as a patch for the lazy emitter.
|
| +const _Patch patch_lazy = const _Patch('lazy');
|
|
|