Changes in src/Parser/ParseNode.h [7f5566b:51b1202]
- File:
-
- 1 edited
-
src/Parser/ParseNode.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ParseNode.h
r7f5566b r51b1202 10 10 // Created On : Sat May 16 13:28:16 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T hu Jul 30 15:11:39 201513 // Update Count : 14 112 // Last Modified On : Tue Aug 11 15:11:29 2015 13 // Update Count : 145 14 14 // 15 15 … … 136 136 private: 137 137 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; 138 152 }; 139 153
Note:
See TracChangeset
for help on using the changeset viewer.