Changeset 187760 in webkit for trunk/Source/JavaScriptCore/parser/SyntaxChecker.h
- Timestamp:
- Aug 3, 2015, 1:47:54 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/SyntaxChecker.h
r187515 r187760 153 153 ExpressionType createUnaryPlus(const JSTokenLocation&, ExpressionType) { return UnaryExpr; } 154 154 ExpressionType createVoid(const JSTokenLocation&, ExpressionType) { return UnaryExpr; } 155 ExpressionType thisExpr(const JSTokenLocation&, ThisTDZMode) { return ThisExpr; }156 ExpressionType superExpr(const JSTokenLocation&) { return SuperExpr; }157 ExpressionType newTargetExpr(const JSTokenLocation&) { return NewTargetExpr; }155 ExpressionType createThisExpr(const JSTokenLocation&, ThisTDZMode) { return ThisExpr; } 156 ExpressionType createSuperExpr(const JSTokenLocation&) { return SuperExpr; } 157 ExpressionType createNewTargetExpr(const JSTokenLocation&) { return NewTargetExpr; } 158 158 ExpressionType createResolve(const JSTokenLocation&, const Identifier*, int) { return ResolveExpr; } 159 159 ExpressionType createObjectLiteral(const JSTokenLocation&) { return ObjectLiteralExpr; }
Note:
See TracChangeset
for help on using the changeset viewer.