| 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();
|
|
|