Index: src/parser.cc |
diff --git a/src/parser.cc b/src/parser.cc |
index 1bd163ce493e8083234fefec10391dca335d9c6c..534a13828d904b15e8f533a24335ef2f2db97339 100644 |
--- a/src/parser.cc |
+++ b/src/parser.cc |
@@ -913,7 +913,6 @@ Parser::Parser(ParseInfo* info) |
DCHECK(!info->script().is_null() || info->source_stream() != NULL); |
set_allow_lazy(info->allow_lazy_parsing()); |
set_allow_natives(FLAG_allow_natives_syntax || info->is_native()); |
- set_allow_harmony_arrow_functions(FLAG_harmony_arrow_functions); |
set_allow_harmony_sloppy(FLAG_harmony_sloppy); |
set_allow_harmony_sloppy_function(FLAG_harmony_sloppy_function); |
set_allow_harmony_sloppy_let(FLAG_harmony_sloppy_let); |
@@ -4732,7 +4731,6 @@ PreParser::PreParseResult Parser::ParseLazyFunctionBodyWithPreParser( |
reusable_preparser_->set_allow_lazy(true); |
#define SET_ALLOW(name) reusable_preparser_->set_allow_##name(allow_##name()); |
SET_ALLOW(natives); |
- SET_ALLOW(harmony_arrow_functions); |
SET_ALLOW(harmony_sloppy); |
SET_ALLOW(harmony_sloppy_let); |
SET_ALLOW(harmony_rest_parameters); |