OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |