Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(968)

Unified Diff: test/dart_codegen/expect/core/annotations.dart

Issue 963593002: Disable formatting and add new-lines to make tests faster. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698