Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Expression.h

    rfbcde64 r294647b  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Mar 30 16:44:00 2017
    13 // Update Count     : 41
     12// Last Modified On : Sat Jan 14 14:37:54 2017
     13// Update Count     : 37
    1414//
    1515
     
    3535
    3636        Type *& get_result() { return result; }
    37         const Type * get_result() const { return result; }
    3837        void set_result( Type * newValue ) { result = newValue; }
    3938        bool has_result() const { return result != nullptr; }
     
    587586        virtual ~CompoundLiteralExpr();
    588587
     588        Type * get_type() const { return type; }
     589        void set_type( Type * t ) { type = t; }
     590
    589591        Initializer * get_initializer() const { return initializer; }
    590592        void set_initializer( Initializer * i ) { initializer = i; }
     
    595597        virtual void print( std::ostream & os, int indent = 0 ) const;
    596598  private:
     599        Type * type;
    597600        Initializer * initializer;
    598601};
Note: See TracChangeset for help on using the changeset viewer.