| Index: pkg/compiler/lib/src/patch_parser.dart
|
| diff --git a/pkg/compiler/lib/src/patch_parser.dart b/pkg/compiler/lib/src/patch_parser.dart
|
| index 297897b8711c03ca8308aec7894f2ae6e52e863c..a639a5856839532b870f59ac8a0c2c63bc91afa8 100644
|
| --- a/pkg/compiler/lib/src/patch_parser.dart
|
| +++ b/pkg/compiler/lib/src/patch_parser.dart
|
| @@ -440,6 +440,8 @@ class PatchAnnotationHandler implements EagerAnnotationHandler<PatchVersion> {
|
| return const PatchVersion('full');
|
| } else if (annotation.beginToken.next.value == 'patch_lazy') {
|
| return const PatchVersion('lazy');
|
| + } else if (annotation.beginToken.next.value == 'patch_startup') {
|
| + return const PatchVersion('startup');
|
| }
|
| }
|
| return null;
|
|
|