Index: src/api.cc |
diff --git a/src/api.cc b/src/api.cc |
index 65663ba5c66c6dfcb1e210d31949fa59ed642d71..83f9e38170fdc5a40344145bbadd2c95f312064d 100644 |
--- a/src/api.cc |
+++ b/src/api.cc |
@@ -1655,7 +1655,7 @@ void ObjectTemplate::SetInternalFieldCount(int value) { |
ScriptData* ScriptData::PreCompile(const char* input, int length) { |
i::Utf8ToUtf16CharacterStream stream( |
reinterpret_cast<const unsigned char*>(input), length); |
- return i::ParserApi::PreParse(&stream, NULL, i::FLAG_harmony_scoping); |
+ return i::ParserApi::PreParse(&stream); |
} |
@@ -1664,10 +1664,10 @@ ScriptData* ScriptData::PreCompile(v8::Handle<String> source) { |
if (str->IsExternalTwoByteString()) { |
i::ExternalTwoByteStringUtf16CharacterStream stream( |
i::Handle<i::ExternalTwoByteString>::cast(str), 0, str->length()); |
- return i::ParserApi::PreParse(&stream, NULL, i::FLAG_harmony_scoping); |
+ return i::ParserApi::PreParse(&stream); |
} else { |
i::GenericStringUtf16CharacterStream stream(str, 0, str->length()); |
- return i::ParserApi::PreParse(&stream, NULL, i::FLAG_harmony_scoping); |
+ return i::ParserApi::PreParse(&stream); |
} |
} |