| Index: src/parsing/parser-base.h
|
| diff --git a/src/parsing/parser-base.h b/src/parsing/parser-base.h
|
| index 7bde0a721bf8f3c4f07bdbbb4c3ac55229652c35..ec6e63404f3437768b66512ca5cc89ed37ad48c1 100644
|
| --- a/src/parsing/parser-base.h
|
| +++ b/src/parsing/parser-base.h
|
| @@ -229,12 +229,6 @@ class ParserBase : public Traits {
|
| bool allow_##name() const { return allow_##name##_; } \
|
| void set_allow_##name(bool allow) { allow_##name##_ = allow; }
|
|
|
| -#define SCANNER_ACCESSORS(name) \
|
| - bool allow_##name() const { return scanner_->allow_##name(); } \
|
| - void set_allow_##name(bool allow) { \
|
| - return scanner_->set_allow_##name(allow); \
|
| - }
|
| -
|
| ALLOW_ACCESSORS(lazy);
|
| ALLOW_ACCESSORS(natives);
|
| ALLOW_ACCESSORS(tailcalls);
|
| @@ -245,9 +239,7 @@ class ParserBase : public Traits {
|
| ALLOW_ACCESSORS(harmony_async_await);
|
| ALLOW_ACCESSORS(harmony_restrictive_generators);
|
| ALLOW_ACCESSORS(harmony_trailing_commas);
|
| - SCANNER_ACCESSORS(harmony_exponentiation_operator);
|
|
|
| -#undef SCANNER_ACCESSORS
|
| #undef ALLOW_ACCESSORS
|
|
|
| uintptr_t stack_limit() const { return stack_limit_; }
|
|
|