| Index: src/parser.cc
|
| diff --git a/src/parser.cc b/src/parser.cc
|
| index 6b53cb53562994247e894c5cab0a62f6fabc2f09..9c55ad7e719265dc535a6d5b3c7990c7a027994b 100644
|
| --- a/src/parser.cc
|
| +++ b/src/parser.cc
|
| @@ -3845,8 +3845,9 @@ bool CompileTimeValue::ArrayLiteralElementNeedsInitialization(
|
|
|
|
|
| Handle<FixedArray> CompileTimeValue::GetValue(Expression* expression) {
|
| + Factory* factory = Isolate::Current()->factory();
|
| ASSERT(IsCompileTimeValue(expression));
|
| - Handle<FixedArray> result = FACTORY->NewFixedArray(2, TENURED);
|
| + Handle<FixedArray> result = factory->NewFixedArray(2, TENURED);
|
| ObjectLiteral* object_literal = expression->AsObjectLiteral();
|
| if (object_literal != NULL) {
|
| ASSERT(object_literal->is_simple());
|
|
|