Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Constant.h

    r62423350 rca35c51  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // Constant.h --
     7// Constant.h -- 
    88//
    99// Author           : Richard C. Bilson
    1010// Created On       : Mon May 18 07:44:20 2015
    11 // Last Modified By : Andrew Beach
    12 // Last Modified On : Thr Jun 22 10:13:00 2017
    13 // Update Count     : 15
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Thu Jun 30 13:33:17 2016
     13// Update Count     : 6
    1414//
    1515
     
    2323class Constant {
    2424  public:
    25         Constant( Type * type, std::string rep, unsigned long long val );
    26         Constant( Type * type, std::string rep, double val );
    27         Constant( const Constant & other );
     25        Constant( Type *type, std::string value );
     26        Constant( const Constant &other );
    2827        virtual ~Constant();
    2928
    30         Type * get_type() { return type; }
    31         void set_type( Type * newValue ) { type = newValue; }
    32         std::string & get_value() { return rep; }
    33         void set_value( std::string newValue ) { rep = newValue; }
    34         unsigned long long get_ival() const;
    35         double get_dval() const;
     29        Type *get_type() { return type; }
     30        void set_type( Type *newValue ) { type = newValue; }
     31        std::string &get_value() { return value; }
     32        void set_value( std::string newValue ) { value = newValue; }
    3633
    37         /// generates a boolean constant of the given bool
    38         static Constant from_bool( bool b );
    3934        /// generates an integer constant of the given int
    4035        static Constant from_int( int i );
     
    4439        static Constant from_double( double d );
    4540
    46         virtual void accept( Visitor & v ) { v.visit( this ); }
    47         virtual Constant * acceptMutator( Mutator & m ) { return m.mutate( this ); }
    48         virtual void print( std::ostream & os ) const;
     41        virtual Constant *clone() const;
     42        virtual void accept( Visitor &v ) { v.visit( this ); }
     43        virtual Constant *acceptMutator( Mutator &m ) { return m.mutate( this ); }
     44        virtual void print( std::ostream &os ) const;
    4945  private:
    50         Type * type;
    51         std::string rep;
    52         union Val {
    53                 unsigned long long ival;
    54                 double dval;
    55                 Val( unsigned long long ival ) : ival( ival ) {}
    56                 Val( double dval ) : dval( dval ) {}
    57         } val;
     46        Type *type;
     47        std::string value;
    5848};
    5949
Note: See TracChangeset for help on using the changeset viewer.