Changeset 248829 in webkit for trunk/Source/JavaScriptCore/parser/SyntaxChecker.h
- Timestamp:
- Aug 17, 2019, 10:54:13 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/SyntaxChecker.h
r245406 r248829 74 74 ThisExpr, NullExpr, BoolExpr, RegExpExpr, ObjectLiteralExpr, 75 75 FunctionExpr, ClassExpr, SuperExpr, ImportExpr, BracketExpr, DotExpr, CallExpr, 76 NewExpr, PreExpr, PostExpr, UnaryExpr, BinaryExpr, 76 NewExpr, PreExpr, PostExpr, UnaryExpr, BinaryExpr, OptionalChain, 77 77 ConditionalExpr, AssignmentExpr, TypeofExpr, 78 78 DeleteExpr, ArrayLiteralExpr, BindingDestructuring, RestParameter, … … 148 148 149 149 int createSourceElements() { return SourceElementsResult; } 150 ExpressionType makeFunctionCallNode(const JSTokenLocation&, int, bool, int, int, int, int, size_t) { return CallExpr; }150 ExpressionType makeFunctionCallNode(const JSTokenLocation&, ExpressionType, bool, int, int, int, int, size_t, bool) { return CallExpr; } 151 151 ExpressionType createCommaExpr(const JSTokenLocation&, ExpressionType expr) { return expr; } 152 152 ExpressionType appendToCommaExpr(const JSTokenLocation&, ExpressionType& head, ExpressionType, ExpressionType next) { head = next; return next; } … … 185 185 ExpressionType createNewExpr(const JSTokenLocation&, ExpressionType, int, int, int, int) { return NewExpr; } 186 186 ExpressionType createNewExpr(const JSTokenLocation&, ExpressionType, int, int) { return NewExpr; } 187 ExpressionType createOptionalChain(const JSTokenLocation&, ExpressionType, ExpressionType, bool) { return OptionalChain; } 187 188 ExpressionType createConditionalExpr(const JSTokenLocation&, ExpressionType, ExpressionType, ExpressionType) { return ConditionalExpr; } 188 189 ExpressionType createAssignResolve(const JSTokenLocation&, const Identifier&, ExpressionType, int, int, int, AssignmentContext) { return AssignmentExpr; }
Note:
See TracChangeset
for help on using the changeset viewer.