Changeset 31e46b8 for src/SynTree/Type.h


Ignore:
Timestamp:
Jul 22, 2016, 2:05:52 PM (9 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
ccb447e, e4957e7
Parents:
956a9c77 (diff), ef3b335 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:/u/cforall/software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Type.h

    r956a9c77 r31e46b8  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Mar  2 17:29:08 2016
    13 // Update Count     : 21
     12// Last Modified On : Wed Jul 13 11:46:54 2016
     13// Update Count     : 23
    1414//
    1515
     
    226226        virtual std::string typeString() const = 0;
    227227        std::list< Expression* > parameters;
    228   private:
    229228        std::string name;
     229  private:
    230230};
    231231
     
    249249        virtual void accept( Visitor &v ) { v.visit( this ); }
    250250        virtual Type *acceptMutator( Mutator &m ) { return m.mutate( this ); }
     251
     252        virtual void print( std::ostream &os, int indent = 0 ) const;
    251253  private:
    252254        virtual std::string typeString() const;
     
    276278        virtual void accept( Visitor &v ) { v.visit( this ); }
    277279        virtual Type *acceptMutator( Mutator &m ) { return m.mutate( this ); }
     280
     281        virtual void print( std::ostream &os, int indent = 0 ) const;
    278282  private:
    279283        virtual std::string typeString() const;
Note: See TracChangeset for help on using the changeset viewer.