Index: src/preparser.h |
diff --git a/src/preparser.h b/src/preparser.h |
index de08eb317f9cf3d1456faca7a82865394b8618a6..ce8df77e7a8586b55b7016cd7713e4aa93faf7f9 100644 |
--- a/src/preparser.h |
+++ b/src/preparser.h |
@@ -2047,7 +2047,7 @@ ParserBase<Traits>::ParseMemberExpression(bool* ok) { |
Consume(Token::FUNCTION); |
int function_token_position = position(); |
bool is_generator = allow_generators() && Check(Token::MUL); |
- IdentifierT name; |
+ IdentifierT name = this->EmptyIdentifier(); |
bool is_strict_reserved_name = false; |
Scanner::Location function_name_location = Scanner::Location::invalid(); |
FunctionLiteral::FunctionType function_type = |