Changeset 192935 in webkit for trunk/Source/JavaScriptCore/parser/SyntaxChecker.h
- Timestamp:
- Dec 1, 2015, 5:37:19 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/SyntaxChecker.h
r192914 r192935 181 181 ExpressionType createEmptyLetExpression(const JSTokenLocation&, const Identifier&) { return AssignmentExpr; } 182 182 ExpressionType createYield(const JSTokenLocation&) { return YieldExpr; } 183 ExpressionType createYield(const JSTokenLocation&, ExpressionType, bool , int, int, int) { return YieldExpr; }183 ExpressionType createYield(const JSTokenLocation&, ExpressionType, bool) { return YieldExpr; } 184 184 ClassExpression createClassExpr(const JSTokenLocation&, const Identifier&, VariableEnvironment&, ExpressionType, ExpressionType, PropertyList, PropertyList) { return ClassExpr; } 185 185 ExpressionType createFunctionExpr(const JSTokenLocation&, const ParserFunctionInfo<SyntaxChecker>&) { return FunctionExpr; } 186 int createFunctionMetadata(const JSTokenLocation&, const JSTokenLocation&, int, int, bool, int, int, int, ConstructorKind, SuperBinding, unsigned, SourceParseMode, bool) { return FunctionBodyResult; }186 int createFunctionMetadata(const JSTokenLocation&, const JSTokenLocation&, int, int, bool, int, int, int, ConstructorKind, unsigned, SourceParseMode, bool, bool) { return FunctionBodyResult; } 187 187 ExpressionType createArrowFunctionExpr(const JSTokenLocation&, const ParserFunctionInfo<SyntaxChecker>&) { return FunctionExpr; } 188 188 void setFunctionNameStart(int, int) { } … … 390 390 void setStartOffset(int, int) { } 391 391 392 void propagateArgumentsUse() { }393 394 392 private: 395 393 int m_topBinaryExpr;
Note:
See TracChangeset
for help on using the changeset viewer.