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

Unified Diff: pkg/csslib/lib/src/tokenkind.dart

Issue 268623002: [html5lib] implement querySelector/querySelectorAll (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rename runes to chars Created 6 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: pkg/csslib/lib/src/tokenkind.dart
diff --git a/pkg/csslib/lib/src/tokenkind.dart b/pkg/csslib/lib/src/tokenkind.dart
index 091bdb7fe0b9f45650b5ef4df9e046a664ca68da..67bce33717af1a75e4a695a9904cd4c1eb577272 100644
--- a/pkg/csslib/lib/src/tokenkind.dart
+++ b/pkg/csslib/lib/src/tokenkind.dart
@@ -39,7 +39,6 @@ class TokenKind {
static const int DOUBLE_QUOTE = 26; // "
static const int SLASH = 27; // /
static const int EQUALS = 28; // =
- static const int OR = 29; // |
static const int CARET = 30; // ^
static const int DOLLAR = 31; // $
static const int LESS = 32; // <
@@ -664,7 +663,6 @@ class TokenKind {
case TokenKind.DOUBLE_QUOTE: return "\"";
case TokenKind.SLASH: return "/";
case TokenKind.EQUALS: return '=';
- case TokenKind.OR: return '|';
case TokenKind.CARET: return '^';
case TokenKind.DOLLAR: return '\$';
case TokenKind.LESS: return '<';

Powered by Google App Engine
This is Rietveld 408576698