Index: src/preparser.cc |
diff --git a/src/preparser.cc b/src/preparser.cc |
index 65a45b4d73619cf1e7cb6145716128898e28530f..ebbc32b7af7315fe141e346cb71f9d7841d69089 100644 |
--- a/src/preparser.cc |
+++ b/src/preparser.cc |
@@ -106,11 +106,11 @@ PreParser::PreParseResult PreParser::PreParseLazyFunction( |
log_ = log; |
// Lazy functions always have trivial outer scopes (no with/catch scopes). |
PreParserScope top_scope(scope_, GLOBAL_SCOPE); |
- PreParserFactory top_factory(NULL, NULL, NULL); |
+ PreParserFactory top_factory(NULL); |
FunctionState top_state(&function_state_, &scope_, &top_scope, &top_factory); |
scope_->SetStrictMode(strict_mode); |
PreParserScope function_scope(scope_, FUNCTION_SCOPE); |
- PreParserFactory function_factory(NULL, NULL, NULL); |
+ PreParserFactory function_factory(NULL); |
FunctionState function_state(&function_state_, &scope_, &function_scope, |
&function_factory); |
function_state.set_is_generator(is_generator); |
@@ -815,7 +815,7 @@ PreParser::Expression PreParser::ParseFunctionLiteral( |
// Parse function body. |
ScopeType outer_scope_type = scope_->type(); |
PreParserScope function_scope(scope_, FUNCTION_SCOPE); |
- PreParserFactory factory(NULL, NULL, NULL); |
+ PreParserFactory factory(NULL); |
FunctionState function_state(&function_state_, &scope_, &function_scope, |
&factory); |
function_state.set_is_generator(IsGeneratorFunction(kind)); |