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

Unified Diff: lib/src/whitespace.dart

Issue 834353002: camelCase constants. Down with ALL_CAPS! (Closed) Base URL: https://github.com/dart-lang/dart_style.git@master
Patch Set: Created 5 years, 11 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: lib/src/whitespace.dart
diff --git a/lib/src/whitespace.dart b/lib/src/whitespace.dart
index b840d0b15d5613fe186ec892572a06aa99038018..7c953056e19e1e08bb541ab09bbab66ff7b57596 100644
--- a/lib/src/whitespace.dart
+++ b/lib/src/whitespace.dart
@@ -11,37 +11,37 @@ library dart_style.src.whitespace;
/// encountered to avoid trailing whitespace.
class Whitespace {
/// A single non-breaking space.
- static const SPACE = const Whitespace._("SPACE");
+ static const space = const Whitespace._("space");
/// A single newline.
- static const NEWLINE = const Whitespace._("NEWLINE");
+ static const newline = const Whitespace._("newline");
/// A single newline that takes into account the current expression nesting
/// for the next line.
- static const NESTED_NEWLINE = const Whitespace._("NESTED_NEWLINE");
+ static const nestedNewline = const Whitespace._("nestedNewline");
/// A single newline with all indentation eliminated at the beginning of the
/// next line.
///
/// Used for subsequent lines in a multiline string.
- static const NEWLINE_FLUSH_LEFT = const Whitespace._("NEWLINE_FLUSH_LEFT");
+ static const newlineFlushLeft = const Whitespace._("newlineFlushLeft");
/// Two newlines, a single blank line of separation.
- static const TWO_NEWLINES = const Whitespace._("TWO_NEWLINES");
+ static const twoNewlines = const Whitespace._("twoNewlines");
/// A space or newline should be output based on whether the current token is
/// on the same line as the previous one or not.
///
/// In general, we like to avoid using this because it makes the formatter
/// less prescriptive over the user's whitespace.
- static const SPACE_OR_NEWLINE = const Whitespace._("SPACE_OR_NEWLINE");
+ static const spaceOrNewline = const Whitespace._("spaceOrNewline");
/// One or two newlines should be output based on how many newlines are
/// present between the next token and the previous one.
///
/// In general, we like to avoid using this because it makes the formatter
/// less prescriptive over the user's whitespace.
- static const ONE_OR_TWO_NEWLINES = const Whitespace._("ONE_OR_TWO_NEWLINES");
+ static const oneOrTwoNewlines = const Whitespace._("oneOrTwoNewlines");
final String name;
« example/format.dart ('K') | « lib/src/source_visitor.dart ('k') | test/formatter_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698