| Index: src/scanner.h
|
| diff --git a/src/scanner.h b/src/scanner.h
|
| index eeed183cdfcf5f2ee8c64d1a813db4c2f697dab9..a527914fc6ff7b86a5c72ce6be8e48d34b5326f7 100644
|
| --- a/src/scanner.h
|
| +++ b/src/scanner.h
|
| @@ -21,6 +21,8 @@ namespace v8 {
|
| namespace internal {
|
|
|
|
|
| +class AstString;
|
| +class AstStringTable;
|
| class ParserRecorder;
|
|
|
|
|
| @@ -376,9 +378,8 @@ class Scanner {
|
| return next_.literal_chars->is_contextual_keyword(keyword);
|
| }
|
|
|
| - Handle<String> AllocateNextLiteralString(Isolate* isolate,
|
| - PretenureFlag tenured);
|
| - Handle<String> AllocateInternalizedString(Isolate* isolate);
|
| + const AstString* CurrentSymbol(AstStringTable* string_table);
|
| + const AstString* NextSymbol(AstStringTable* string_table);
|
|
|
| double DoubleValue();
|
| bool UnescapedLiteralMatches(const char* data, int length) {
|
|
|