Changeset bdd0755
- Timestamp:
- May 3, 2017, 5:19:01 PM (7 years ago)
- 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)
- Location:
- src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/CodeGenerator.cc
rca946a4 rbdd0755 262 262 } // if 263 263 } else { 264 output << typeDecl->typeString() << " " << typeDecl->get_name(); 264 output << typeDecl->genTypeString() << " " << typeDecl->get_name(); 265 if ( typeDecl->get_kind() != TypeDecl::Any && typeDecl->get_sized() ) { 266 output << " | sized(" << typeDecl->get_name() << ")"; 267 } 265 268 if ( ! typeDecl->get_assertions().empty() ) { 266 269 output << " | { "; -
src/SynTree/Declaration.h
rca946a4 rbdd0755 204 204 205 205 virtual std::string typeString() const; 206 virtual std::string genTypeString() const; 206 207 207 208 virtual TypeDecl *clone() const { return new TypeDecl( *this ); } -
src/SynTree/TypeDecl.cc
rca946a4 rbdd0755 29 29 } 30 30 31 std::string TypeDecl::genTypeString() const { 32 static const std::string kindNames[] = { "otype", "dtype", "ftype", "ttype" }; 33 return kindNames[ kind ]; 34 } 35 31 36 std::ostream & operator<<( std::ostream & os, const TypeDecl::Data & data ) { 32 37 return os << data.kind << ", " << data.isComplete;
Note: See TracChangeset
for help on using the changeset viewer.