Changeset 229162 in webkit for trunk/Source/JavaScriptCore/parser/Parser.cpp
- Timestamp:
- Mar 1, 2018, 9:55:39 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/Parser.cpp
r228422 r229162 3638 3638 bool isAsyncArrow = false; 3639 3639 if (UNLIKELY(classifier.indicatesPossibleAsyncArrowFunction())) { 3640 ASSERT(matchContextualKeyword(m_vm->propertyNames->async)); 3641 next(); 3642 isAsyncArrow = !m_lexer->prevTerminator(); 3640 if (matchContextualKeyword(m_vm->propertyNames->async)) { 3641 next(); 3642 isAsyncArrow = !m_lexer->prevTerminator(); 3643 } 3643 3644 } 3644 3645 if (isArrowFunctionParameters()) {
Note:
See TracChangeset
for help on using the changeset viewer.