| 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 b0bde835c9fcc104fd47f4dd73825177bfa66db9..297897b8711c03ca8308aec7894f2ae6e52e863c 100644
 | 
| --- a/pkg/compiler/lib/src/patch_parser.dart
 | 
| +++ b/pkg/compiler/lib/src/patch_parser.dart
 | 
| @@ -436,10 +436,10 @@ class PatchAnnotationHandler implements EagerAnnotationHandler<PatchVersion> {
 | 
|      if (annotation.beginToken != null) {
 | 
|        if (annotation.beginToken.next.value == 'patch') {
 | 
|          return const PatchVersion(null);
 | 
| -      } else if (annotation.beginToken.next.value == 'patch_old') {
 | 
| -        return const PatchVersion('old');
 | 
| -      } else if (annotation.beginToken.next.value == 'patch_new') {
 | 
| -        return const PatchVersion('new');
 | 
| +      } else if (annotation.beginToken.next.value == 'patch_full') {
 | 
| +        return const PatchVersion('full');
 | 
| +      } else if (annotation.beginToken.next.value == 'patch_lazy') {
 | 
| +        return const PatchVersion('lazy');
 | 
|        }
 | 
|      }
 | 
|      return null;
 | 
| 
 |