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

Unified Diff: samples-dev/swarm/swarm_ui_lib/layout/GridLayoutParser.dart

Issue 2828603002: Format samples and samples-dev directories. (Closed)
Patch Set: Created 3 years, 8 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: samples-dev/swarm/swarm_ui_lib/layout/GridLayoutParser.dart
diff --git a/samples-dev/swarm/swarm_ui_lib/layout/GridLayoutParser.dart b/samples-dev/swarm/swarm_ui_lib/layout/GridLayoutParser.dart
index 04a759fea8a2e18169ce3f5bb37e8366c2a86351..9de7f9763d38abcd20d4f74643a16ead5f675881 100644
--- a/samples-dev/swarm/swarm_ui_lib/layout/GridLayoutParser.dart
+++ b/samples-dev/swarm/swarm_ui_lib/layout/GridLayoutParser.dart
@@ -13,18 +13,18 @@ class _Parser {
// TODO(jmesserly): shouldn't need this optimization, but dart_json parser
// found that they needed this.
- static const A_BIG = 65; // 'A'.codeUnitAt(0)
- static const Z_BIG = 90; // 'Z'.codeUnitAt(0)
- static const A_SMALL = 97; // 'a'.codeUnitAt(0)
- static const Z_SMALL = 122; // 'z'.codeUnitAt(0)
- static const TAB = 9; // '\t'.codeUnitAt(0)
- static const NEW_LINE = 10; // '\n'.codeUnitAt(0)
- static const LINE_FEED = 13; // '\r'.codeUnitAt(0)
- static const SPACE = 32; // ' '.codeUnitAt(0)
- static const ZERO = 48; // '0'.codeUnitAt(0)
- static const NINE = 57; // '9'.codeUnitAt(0)
- static const DOT = 46; // '.'.codeUnitAt(0)
- static const R_PAREN = 41; // ')'.codeUnitAt(0)
+ static const A_BIG = 65; // 'A'.codeUnitAt(0)
+ static const Z_BIG = 90; // 'Z'.codeUnitAt(0)
+ static const A_SMALL = 97; // 'a'.codeUnitAt(0)
+ static const Z_SMALL = 122; // 'z'.codeUnitAt(0)
+ static const TAB = 9; // '\t'.codeUnitAt(0)
+ static const NEW_LINE = 10; // '\n'.codeUnitAt(0)
+ static const LINE_FEED = 13; // '\r'.codeUnitAt(0)
+ static const SPACE = 32; // ' '.codeUnitAt(0)
+ static const ZERO = 48; // '0'.codeUnitAt(0)
+ static const NINE = 57; // '9'.codeUnitAt(0)
+ static const DOT = 46; // '.'.codeUnitAt(0)
+ static const R_PAREN = 41; // ')'.codeUnitAt(0)
final String _src;
int _offset;
@@ -74,8 +74,8 @@ class _Parser {
}
bool _maybeEatMultiLineComment() {
- if (_maybeEat('/*', /*eatWhitespace:*/false)) {
- while (!_maybeEat('*/', /*eatWhitespace:*/false)) {
+ if (_maybeEat('/*', /*eatWhitespace:*/ false)) {
+ while (!_maybeEat('*/', /*eatWhitespace:*/ false)) {
if (_offset >= length) {
_error('expected */');
}
@@ -330,9 +330,9 @@ class _GridTrackParser extends _Parser {
final Map<String, int> _lineNames;
_GridTrackParser._internal(String src)
- : super(src),
- _tracks = new List<GridTrack>(),
- _lineNames = new Map<String, int>();
+ : super(src),
+ _tracks = new List<GridTrack>(),
+ _lineNames = new Map<String, int>();
/** Parses the grid-rows and grid-columns CSS properties into object form. */
static GridTrackList parse(String str) {
@@ -465,7 +465,6 @@ class _GridTrackParser extends _Parser {
}
}
-
/**
* Exception thrown because the grid style properties had incorrect values.
*/
« no previous file with comments | « samples-dev/swarm/swarm_ui_lib/layout/GridLayoutParams.dart ('k') | samples-dev/swarm/swarm_ui_lib/layout/GridTracks.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698