Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/BaseSyntaxNode.h

    r7870799 r99d4584  
    99// Author           : Thierry Delisle
    1010// Created On       : Tue Feb 14 07:44:20 2017
    11 // Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Jul 10 16:13:49 2019
    13 // Update Count     : 4
     11// Last Modified By : Andrew Beach
     12// Last Modified On : Thr Aug 17 13:44:00
     13// Update Count     : 1
    1414//
    1515
     
    2525class BaseSyntaxNode {
    2626  public:
    27         static Stats::Counters::SimpleCounter* new_nodes;
     27  static Stats::Counters::SimpleCounter* new_nodes;
    2828
    2929        CodeLocation location;
    3030
    31         BaseSyntaxNode() { ++*new_nodes; }
    32         BaseSyntaxNode( const BaseSyntaxNode & o ) : location(o.location) { ++*new_nodes; }
    33         BaseSyntaxNode & operator=( const BaseSyntaxNode & ) = default;
     31  BaseSyntaxNode() { ++*new_nodes; }
     32  BaseSyntaxNode( const BaseSyntaxNode& o ) : location(o.location) { ++*new_nodes; }
    3433
    3534        virtual ~BaseSyntaxNode() {}
     
    3736        virtual BaseSyntaxNode * clone() const = 0;
    3837        virtual void accept( Visitor & v ) = 0;
    39         virtual void accept( Visitor & v ) const = 0;
    4038        virtual BaseSyntaxNode * acceptMutator( Mutator & m ) = 0;
    41         /// Notes:
    42         /// * each node is responsible for indenting its children.
    43         /// * Expressions should not finish with a newline, since the expression's parent has better information.
     39  /// Notes:
     40  /// * each node is responsible for indenting its children.
     41  /// * Expressions should not finish with a newline, since the expression's parent has better information.
    4442        virtual void print( std::ostream & os, Indenter indent = {} ) const = 0;
     43  // void print( std::ostream & os, unsigned int indent ) {
     44  //   print( os, Indenter{ indent });
     45  // }
    4546};
    4647
Note: See TracChangeset for help on using the changeset viewer.