| Index: src/parser.h
|
| diff --git a/src/parser.h b/src/parser.h
|
| index ff36fe90e0b0cd1c9a5c44f6086b7dc6ba069e33..8f829e2c770a3ca57acac779475a33e4831e0c71 100644
|
| --- a/src/parser.h
|
| +++ b/src/parser.h
|
| @@ -383,6 +383,8 @@ class ParserTraits {
|
| explicit ParserTraits(Parser* parser) : parser_(parser) {}
|
|
|
| // Helper functions for recursive descent.
|
| + bool IsEval(const AstRawString* identifier) const;
|
| + bool IsArguments(const AstRawString* identifier) const;
|
| bool IsEvalOrArguments(const AstRawString* identifier) const;
|
| V8_INLINE bool IsFutureStrictReserved(const AstRawString* identifier) const;
|
|
|
|
|