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

Side by Side 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 unified diff | Download patch
OLDNEW
1 part of dart.core; 1 part of dart.core;
2 2 class Deprecated {final String expires;
3 class Deprecated { 3 const Deprecated(String expires) : this.expires = expires;
4 final String expires; 4 String toString() => "Deprecated feature. Will be removed $expires";
5 const Deprecated(String expires) : this.expires = expires;
6 String toString() => "Deprecated feature. Will be removed $expires";
7 } 5 }
8 class _Override { 6 class _Override {const _Override();
9 const _Override();
10 } 7 }
11 const Deprecated deprecated = const Deprecated("next release"); 8 const Deprecated deprecated = const Deprecated("next release");
12 const Object override = const _Override(); 9 const Object override = const _Override();
13 class _Proxy { 10 class _Proxy {const _Proxy();
14 const _Proxy();
15 } 11 }
16 const Object proxy = const _Proxy(); 12 const Object proxy = const _Proxy();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698