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

Side by Side Diff: packages/dart_style/test/regression/0500/0511.unit

Issue 2990843002: Removed fixed dependencies (Closed)
Patch Set: Created 3 years, 4 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
(Empty)
1 >>>
2 class Foo {
3 static const StaticWarningCode FINAL_NOT_INITIALIZED = const StaticWarningCode (
4 'FINAL_NOT_INITIALIZED',
5 "The final variable '{0}' must be initialized", /*correction:*/ null, /*st rongModeError:*/ false);
6 }
7 <<<
8 class Foo {
9 static const StaticWarningCode FINAL_NOT_INITIALIZED =
10 const StaticWarningCode(
11 'FINAL_NOT_INITIALIZED',
12 "The final variable '{0}' must be initialized",
13 /*correction:*/ null,
14 /*strongModeError:*/ false);
15 }
OLDNEW
« no previous file with comments | « packages/dart_style/test/regression/0500/0506.unit ('k') | packages/dart_style/test/regression/0500/0513.unit » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698