Ignore:
Timestamp:
Dec 4, 2014, 3:55:34 PM (10 years ago)
Author:
[email protected]
Message:

2014-12-04 Geoffrey Garen <[email protected]>

Marked some final things final.

Reviewed by Andreas Kling.

  • parser/Nodes.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/parser/Nodes.h

    r176822 r176823  
    15391539    };
    15401540
    1541     class FunctionBodyNode : public StatementNode, public ParserArenaDeletable {
     1541    class FunctionBodyNode final : public StatementNode, public ParserArenaDeletable {
    15421542    public:
    15431543        using ParserArenaDeletable::operator new;
     
    15831583    };
    15841584
    1585     class FunctionNode : public ScopeNode {
     1585    class FunctionNode final : public ScopeNode {
    15861586    public:
    15871587        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.