| Index: src/parsing/preparser.cc
|
| diff --git a/src/parsing/preparser.cc b/src/parsing/preparser.cc
|
| index 7c488859486e67b16ab6e84a99dbf32c32011077..3c8822915e251138bced2f88ae6784e1d1042437 100644
|
| --- a/src/parsing/preparser.cc
|
| +++ b/src/parsing/preparser.cc
|
| @@ -67,6 +67,8 @@ PreParserIdentifier GetSymbolHelper(Scanner* scanner) {
|
| return PreParserIdentifier::Prototype();
|
| if (scanner->LiteralMatches("constructor", 11))
|
| return PreParserIdentifier::Constructor();
|
| + if (scanner->LiteralMatches("name", 4))
|
| + return PreParserIdentifier::Name();
|
| return PreParserIdentifier::Default();
|
| }
|
| }
|
|
|