| Index: test/dart_codegen/expect/core/annotations.dart
|
| diff --git a/test/dart_codegen/expect/core/annotations.dart b/test/dart_codegen/expect/core/annotations.dart
|
| index aa91d9f6863129b0335d3b77967121fe032858e2..1be08c7d69987317a037c841962f401dd163d248 100644
|
| --- a/test/dart_codegen/expect/core/annotations.dart
|
| +++ b/test/dart_codegen/expect/core/annotations.dart
|
| @@ -1,16 +1,12 @@
|
| part of dart.core;
|
| -
|
| -class Deprecated {
|
| - final String expires;
|
| - const Deprecated(String expires) : this.expires = expires;
|
| - String toString() => "Deprecated feature. Will be removed $expires";
|
| + class Deprecated {final String expires;
|
| + const Deprecated(String expires) : this.expires = expires;
|
| + String toString() => "Deprecated feature. Will be removed $expires";
|
| }
|
| -class _Override {
|
| - const _Override();
|
| + class _Override {const _Override();
|
| }
|
| -const Deprecated deprecated = const Deprecated("next release");
|
| -const Object override = const _Override();
|
| -class _Proxy {
|
| - const _Proxy();
|
| + const Deprecated deprecated = const Deprecated("next release");
|
| + const Object override = const _Override();
|
| + class _Proxy {const _Proxy();
|
| }
|
| -const Object proxy = const _Proxy();
|
| + const Object proxy = const _Proxy();
|
|
|