Changeset 206268 in webkit for trunk/Source/JavaScriptCore/parser/Nodes.cpp
- Timestamp:
- Sep 22, 2016, 12:11:23 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/Nodes.cpp
r204470 r206268 136 136 const JSTokenLocation& endLocation, unsigned startColumn, unsigned endColumn, 137 137 int functionKeywordStart, int functionNameStart, int parametersStart, bool isInStrictContext, 138 ConstructorKind constructorKind, SuperBinding superBinding, unsigned parameterCount, SourceParseMode mode, bool isArrowFunctionBodyExpression)138 ConstructorKind constructorKind, SuperBinding superBinding, unsigned parameterCount, unsigned functionLength, SourceParseMode mode, bool isArrowFunctionBodyExpression) 139 139 : Node(endLocation) 140 140 , m_startColumn(startColumn) … … 145 145 , m_startStartOffset(startLocation.startOffset) 146 146 , m_parameterCount(parameterCount) 147 , m_functionLength(functionLength) 147 148 , m_parseMode(mode) 148 149 , m_isInStrictContext(isInStrictContext)
Note:
See TracChangeset
for help on using the changeset viewer.