Changeset 214038 in webkit for trunk/Source/JavaScriptCore/parser/SyntaxChecker.h
- Timestamp:
- Mar 16, 2017, 5:58:14 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/SyntaxChecker.h
r214029 r214038 77 77 DeleteExpr, ArrayLiteralExpr, BindingDestructuring, RestParameter, 78 78 ArrayDestructuring, ObjectDestructuring, SourceElementsResult, 79 FunctionBodyResult, SpreadExpr, ArgumentsResult,79 FunctionBodyResult, SpreadExpr, ObjectSpreadExpr, ArgumentsResult, 80 80 PropertyListResult, ArgumentsListResult, ElementsListResult, 81 81 StatementResult, FormalParameterListResult, ClauseResult, … … 195 195 int createArguments(int) { return ArgumentsResult; } 196 196 ExpressionType createSpreadExpression(const JSTokenLocation&, ExpressionType, int, int, int) { return SpreadExpr; } 197 ExpressionType createObjectSpreadExpression(const JSTokenLocation&, ExpressionType, int, int, int) { return ObjectSpreadExpr; } 197 198 TemplateString createTemplateString(const JSTokenLocation&, const Identifier*, const Identifier*) { return TemplateStringResult; } 198 199 TemplateStringList createTemplateStringList(TemplateString) { return TemplateStringListResult; } … … 212 213 ASSERT(name); 213 214 return Property(name, type); 215 } 216 Property createProperty(int, PropertyNode::Type type, PropertyNode::PutType, bool, SuperBinding, bool) 217 { 218 return Property(type); 214 219 } 215 220 Property createProperty(VM* vm, ParserArena& parserArena, double name, int, PropertyNode::Type type, PropertyNode::PutType, bool complete, SuperBinding, bool)
Note:
See TracChangeset
for help on using the changeset viewer.