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

Unified Diff: runtime/vm/scanner.h

Issue 2680303002: Kernel debugging; service tests (Closed)
Patch Set: Correct file offset when calling on field (mind the rebase) Created 3 years, 10 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
diff --git a/runtime/vm/scanner.h b/runtime/vm/scanner.h
index d26b989623e27e0a518db939c862b2ade19ae3f8..f378b11edbe44bda6a856d37df4cfa55a6c57758 100644
--- a/runtime/vm/scanner.h
+++ b/runtime/vm/scanner.h
@@ -89,6 +89,9 @@ class Scanner : ValueObject {
bool* is_positive,
const String** value);
+ static bool IsIdentStartChar(int32_t c);
+ static bool IsIdentChar(int32_t c);
+
private:
friend class ScanContext;
@@ -126,8 +129,6 @@ class Scanner : ValueObject {
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);
// Skips up to next non-whitespace character.
void ConsumeWhiteSpace();

Powered by Google App Engine
This is Rietveld 408576698