Changeset 176823 in webkit for trunk/Source/JavaScriptCore/parser/Nodes.h
- Timestamp:
- Dec 4, 2014, 3:55:34 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/Nodes.h
r176822 r176823 1539 1539 }; 1540 1540 1541 class FunctionBodyNode : public StatementNode, public ParserArenaDeletable {1541 class FunctionBodyNode final : public StatementNode, public ParserArenaDeletable { 1542 1542 public: 1543 1543 using ParserArenaDeletable::operator new; … … 1583 1583 }; 1584 1584 1585 class FunctionNode : public ScopeNode {1585 class FunctionNode final : public ScopeNode { 1586 1586 public: 1587 1587 static PassRefPtr<FunctionNode> create(ParserArena&, const JSTokenLocation& start, const JSTokenLocation& end, unsigned startColumn, unsigned endColumn, SourceElements*, VarStack*, FunctionStack*, IdentifierSet&, const SourceCode&, CodeFeatures, int numConstants);
Note:
See TracChangeset
for help on using the changeset viewer.