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; | 10 static const int END_OF_FILE = 1; |
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
454 | 454 |
455 static bool isIdentifier(int kind) { | 455 static bool isIdentifier(int kind) { |
456 return kind == IDENTIFIER; | 456 return kind == IDENTIFIER; |
457 } | 457 } |
458 } | 458 } |
459 | 459 |
460 class NoElementMatchException implements Exception { | 460 class NoElementMatchException implements Exception { |
461 String _tagName; | 461 String _tagName; |
462 NoElementMatchException(this._tagName); | 462 NoElementMatchException(this._tagName); |
463 | 463 |
464 String get name() => _tagName; | 464 String get name => _tagName; |
465 } | 465 } |
OLD | NEW |