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

Unified Diff: compiler/java/com/google/dart/compiler/parser/Token.java

Issue 9232041: Remove support for >>> and >>>= operators in dartc (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove >>> and >>>= operators Created 8 years, 11 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: compiler/java/com/google/dart/compiler/parser/Token.java
diff --git a/compiler/java/com/google/dart/compiler/parser/Token.java b/compiler/java/com/google/dart/compiler/parser/Token.java
index 76d6c916d9791c51721a42e0f85aef159d43d396..0671898bda1c55552c11e7b6ee46ddd2130c1217 100644
--- a/compiler/java/com/google/dart/compiler/parser/Token.java
+++ b/compiler/java/com/google/dart/compiler/parser/Token.java
@@ -1,4 +1,4 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
@@ -39,7 +39,6 @@ public enum Token {
ASSIGN_BIT_AND("&=", 2),
ASSIGN_SHL("<<=", 2),
ASSIGN_SAR(">>=", 2),
- ASSIGN_SHR(">>>=", 2),
ASSIGN_ADD("+=", 2),
ASSIGN_SUB("-=", 2),
ASSIGN_MUL("*=", 2),
@@ -55,7 +54,6 @@ public enum Token {
BIT_AND("&", 8),
SHL("<<", 11),
SAR(">>", 11),
- SHR(">>>", 11),
ADD("+", 12),
SUB("-", 12),
MUL("*", 13),
@@ -133,7 +131,7 @@ public enum Token {
// Note: STRING_EMBED_EXP_END uses the same symbol as RBRACE, but it is
// recognized by the scanner when closing embedded expressions in string
// interpolation and string templates.
-
+
/* Directives */
LIBRARY("#library", 0),
IMPORT("#import", 0),

Powered by Google App Engine
This is Rietveld 408576698