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

Unified Diff: runtime/vm/scanner.h

Issue 9264051: Fix for bug 1229: Unary operator plus is not allowed ... except for literals. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' 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: runtime/vm/scanner.h
===================================================================
--- runtime/vm/scanner.h (revision 3739)
+++ runtime/vm/scanner.h (working copy)
@@ -131,6 +131,7 @@
// a decimal digit, a hexadecimal digit, etc.
static bool IsLetter(int32_t c);
static bool IsDecimalDigit(int32_t c);
+ static bool IsNumberStart(int32_t);
static bool IsHexDigit(int32_t c);
static bool IsIdentStartChar(int32_t c);
static bool IsIdentChar(int32_t c);
« runtime/vm/parser.cc ('K') | « runtime/vm/parser.cc ('k') | runtime/vm/scanner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698