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

Unified Diff: dart/lib/compiler/implementation/scanner/scanner.dart

Issue 10945027: Remove >>> and >>>= from scanner. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address review comments 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | dart/lib/compiler/implementation/scanner/token.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/lib/compiler/implementation/scanner/scanner.dart
diff --git a/dart/lib/compiler/implementation/scanner/scanner.dart b/dart/lib/compiler/implementation/scanner/scanner.dart
index 3f05e8b552cbe9a0474a4ee00164c76d078ad1a5..c6bd646a8915de97e973c6933c32068591a43b28 100644
--- a/dart/lib/compiler/implementation/scanner/scanner.dart
+++ b/dart/lib/compiler/implementation/scanner/scanner.dart
@@ -431,15 +431,6 @@ class AbstractScanner<T extends SourceString> implements Scanner {
if ($EQ === next) {
appendPrecedenceToken(GT_GT_EQ_INFO);
return advance();
- } else if ($GT === next) {
- next = advance();
- if (next === $EQ) {
- appendPrecedenceToken(GT_GT_GT_EQ_INFO);
- return advance();
- } else {
- appendGtGtGt(GT_GT_GT_INFO, ">>>");
- return next;
- }
} else {
appendGtGt(GT_GT_INFO, ">>");
return next;
« no previous file with comments | « no previous file | dart/lib/compiler/implementation/scanner/token.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698