| Index: sdk/lib/_internal/lib/annotations.dart
|
| diff --git a/sdk/lib/_internal/lib/annotations.dart b/sdk/lib/_internal/lib/annotations.dart
|
| index 66d481880242cf6d8345ce2ef31d825ec3ba53ef..23f1234b881cdcc912a16304ecfc9fe0d795f453 100644
|
| --- a/sdk/lib/_internal/lib/annotations.dart
|
| +++ b/sdk/lib/_internal/lib/annotations.dart
|
| @@ -21,3 +21,10 @@ class NoThrows {
|
| class NoInline {
|
| const NoInline();
|
| }
|
| +
|
| +// Ensures that the annotated method is represented internally using
|
| +// IR nodes ([:value == true:]) or AST nodes ([:value == false:]).
|
| +class IrRepresentation {
|
| + final bool value;
|
| + const IrRepresentation(this.value);
|
| +}
|
|
|