Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/ParseNode.h

    r51b1202 r7f5566b  
    1010// Created On       : Sat May 16 13:28:16 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Aug 11 15:11:29 2015
    13 // Update Count     : 145
     12// Last Modified On : Thu Jul 30 15:11:39 2015
     13// Update Count     : 141
    1414//
    1515
     
    136136  private:
    137137        bool isLabel;
    138 };
    139 
    140 class DesignatorNode : public ExpressionNode {
    141   public:
    142         DesignatorNode( ExpressionNode *expr, bool isArrayIndex = false );
    143         DesignatorNode( const DesignatorNode &other );
    144 
    145         virtual Expression *build() const ;
    146         virtual DesignatorNode *clone() const { return new DesignatorNode( *this ); }
    147 
    148         virtual void print( std::ostream &, int indent = 0 ) const;
    149         virtual void printOneLine( std::ostream &, int indent = 0 ) const;
    150   private:
    151         bool isArrayIndex;
    152138};
    153139
Note: See TracChangeset for help on using the changeset viewer.