Ignore:
Timestamp:
May 3, 2017, 5:19:01 PM (7 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
262f085f
Parents:
ca946a4
git-author:
Rob Schluntz <rschlunt@…> (05/03/17 17:18:35)
git-committer:
Rob Schluntz <rschlunt@…> (05/03/17 17:19:01)
Message:

fix prettyprint codegen for typedecl

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/TypeDecl.cc

    rca946a4 rbdd0755  
    2929}
    3030
     31std::string TypeDecl::genTypeString() const {
     32        static const std::string kindNames[] = { "otype", "dtype", "ftype", "ttype" };
     33        return kindNames[ kind ];
     34}
     35
    3136std::ostream & operator<<( std::ostream & os, const TypeDecl::Data & data ) {
    3237  return os << data.kind << ", " << data.isComplete;
Note: See TracChangeset for help on using the changeset viewer.