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

Side by Side Diff: utils/css/tokenkind.dart

Issue 10919146: Get rid of a lot of () for getters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « utils/css/tokenizer.dart ('k') | utils/css/tree.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // TODO(terry): Need to be consistent with tokens either they're ASCII tokens 5 // TODO(terry): Need to be consistent with tokens either they're ASCII tokens
6 // e.g., ASTERISK or they're CSS e.g., PSEUDO, COMBINATOR_*. 6 // e.g., ASTERISK or they're CSS e.g., PSEUDO, COMBINATOR_*.
7 class TokenKind { 7 class TokenKind {
8 // Common shared tokens used in TokenizerBase. 8 // Common shared tokens used in TokenizerBase.
9 static const int UNUSED = 0; // Unused place holder... 9 static const int UNUSED = 0; // Unused place holder...
10 static const int END_OF_FILE = 1; // TODO(terry): Must match base 10 static const int END_OF_FILE = 1; // TODO(terry): Must match base
(...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 static bool isIdentifier(int kind) { 585 static bool isIdentifier(int kind) {
586 return kind == IDENTIFIER ; 586 return kind == IDENTIFIER ;
587 } 587 }
588 588
589 } 589 }
590 590
591 class NoColorMatchException implements Exception { 591 class NoColorMatchException implements Exception {
592 String _colorName; 592 String _colorName;
593 NoColorMatchException(this._colorName); 593 NoColorMatchException(this._colorName);
594 594
595 String get name() => _colorName; 595 String get name => _colorName;
596 } 596 }
OLDNEW
« no previous file with comments | « utils/css/tokenizer.dart ('k') | utils/css/tree.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698