Changeset 187760 in webkit for trunk/Source/JavaScriptCore/parser/ASTBuilder.h
- Timestamp:
- Aug 3, 2015, 1:47:54 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/ASTBuilder.h
r187680 r187760 169 169 return new (m_parserArena) VoidNode(location, expr); 170 170 } 171 ExpressionNode* thisExpr(const JSTokenLocation& location, ThisTDZMode thisTDZMode)171 ExpressionNode* createThisExpr(const JSTokenLocation& location, ThisTDZMode thisTDZMode) 172 172 { 173 173 usesThis(); 174 174 return new (m_parserArena) ThisNode(location, thisTDZMode); 175 175 } 176 ExpressionNode* superExpr(const JSTokenLocation& location)176 ExpressionNode* createSuperExpr(const JSTokenLocation& location) 177 177 { 178 178 return new (m_parserArena) SuperNode(location); 179 179 } 180 ExpressionNode* newTargetExpr(const JSTokenLocation location)180 ExpressionNode* createNewTargetExpr(const JSTokenLocation location) 181 181 { 182 182 return new (m_parserArena) NewTargetNode(location);
Note:
See TracChangeset
for help on using the changeset viewer.