| Index: src/parsing/parser-base.h
|
| diff --git a/src/parsing/parser-base.h b/src/parsing/parser-base.h
|
| index bb62f86e3bdae892d4ba7c83fe73077293192483..4fe27e2e5a364a79c103051da3159938b991e21a 100644
|
| --- a/src/parsing/parser-base.h
|
| +++ b/src/parsing/parser-base.h
|
| @@ -207,7 +207,6 @@ class ParserBase {
|
| scanner_(scanner),
|
| stack_overflow_(false),
|
| default_eager_compile_hint_(FunctionLiteral::kShouldLazyCompile),
|
| - allow_lazy_(false),
|
| allow_natives_(false),
|
| allow_tailcalls_(false),
|
| allow_harmony_do_expressions_(false),
|
| @@ -221,7 +220,6 @@ class ParserBase {
|
| bool allow_##name() const { return allow_##name##_; } \
|
| void set_allow_##name(bool allow) { allow_##name##_ = allow; }
|
|
|
| - ALLOW_ACCESSORS(lazy);
|
| ALLOW_ACCESSORS(natives);
|
| ALLOW_ACCESSORS(tailcalls);
|
| ALLOW_ACCESSORS(harmony_do_expressions);
|
| @@ -1437,7 +1435,6 @@ class ParserBase {
|
|
|
| FunctionLiteral::EagerCompileHint default_eager_compile_hint_;
|
|
|
| - bool allow_lazy_;
|
| bool allow_natives_;
|
| bool allow_tailcalls_;
|
| bool allow_harmony_do_expressions_;
|
|
|