Changeset 191030 in webkit for trunk/Source/JavaScriptCore/parser/ASTBuilder.h
- Timestamp:
- Oct 13, 2015, 8:56:53 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/ASTBuilder.h
r190066 r191030 343 343 344 344 #if ENABLE(ES6_CLASS_SYNTAX) 345 ClassExprNode* createClassExpr(const JSTokenLocation& location, const Identifier& name, ExpressionNode* constructor,345 ClassExprNode* createClassExpr(const JSTokenLocation& location, const Identifier& name, VariableEnvironment& classEnvironment, ExpressionNode* constructor, 346 346 ExpressionNode* parentClass, PropertyListNode* instanceMethods, PropertyListNode* staticMethods) 347 347 { 348 return new (m_parserArena) ClassExprNode(location, name, c onstructor, parentClass, instanceMethods, staticMethods);348 return new (m_parserArena) ClassExprNode(location, name, classEnvironment, constructor, parentClass, instanceMethods, staticMethods); 349 349 } 350 350 #endif
Note:
See TracChangeset
for help on using the changeset viewer.