Changeset 4a9ccc3 for src/SynTree
- Timestamp:
- Jan 24, 2017, 3:56:33 PM (8 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:
- ad6343e
- Parents:
- 0bfaf80
- Location:
- src/SynTree
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/SynTree/AggregateDecl.cc ¶
r0bfaf80 r4a9ccc3 69 69 std::string EnumDecl::typeString() const { return "enum"; } 70 70 71 std::string TraitDecl::typeString() const { return " context"; }71 std::string TraitDecl::typeString() const { return "trait"; } 72 72 73 73 // Local Variables: // -
TabularUnified src/SynTree/ReferenceToType.cc ¶
r0bfaf80 r4a9ccc3 64 64 } 65 65 66 bool StructInstType::isComplete() const { return baseStruct->has_body(); } 67 66 68 void StructInstType::lookup( const std::string &name, std::list< Declaration* > &foundDecls ) const { 67 69 assert( baseStruct ); … … 90 92 } 91 93 94 bool UnionInstType::isComplete() const { return baseUnion->has_body(); } 95 92 96 void UnionInstType::lookup( const std::string &name, std::list< Declaration* > &foundDecls ) const { 93 97 assert( baseUnion ); … … 111 115 std::string EnumInstType::typeString() const { return "enum"; } 112 116 113 std::string TraitInstType::typeString() const { return " context"; }117 std::string TraitInstType::typeString() const { return "trait"; } 114 118 115 119 TraitInstType::TraitInstType( const TraitInstType &other ) : Parent( other ) { … … 120 124 deleteAll( members ); 121 125 } 126 127 bool TraitInstType::isComplete() const { assert( false ); } 122 128 123 129 TypeInstType::TypeInstType( const Type::Qualifiers &tq, const std::string &name, TypeDecl *baseType ) : Parent( tq, name ) { … … 143 149 std::string TypeInstType::typeString() const { return "type"; } 144 150 151 bool TypeInstType::isComplete() const { return baseType->isComplete(); } 152 145 153 void TypeInstType::print( std::ostream &os, int indent ) const { 146 154 using std::endl; -
TabularUnified src/SynTree/Type.h ¶
r0bfaf80 r4a9ccc3 74 74 virtual Type * getComponent( unsigned i ) { assertf( size() == 1 && i == 0, "Type::getComponent was called with size %d and index %d\n", size(), i ); return this; } 75 75 76 virtual bool isComplete() const { return true; } 77 76 78 virtual Type *clone() const = 0; 77 79 virtual void accept( Visitor &v ) = 0; … … 90 92 91 93 virtual unsigned size() const { return 0; }; 94 virtual bool isComplete() const { return false; } 92 95 93 96 virtual VoidType *clone() const { return new VoidType( *this ); } … … 185 188 void set_isStatic( bool newValue ) { isStatic = newValue; } 186 189 190 virtual bool isComplete() const { return ! isVarLen; } 191 187 192 virtual ArrayType *clone() const { return new ArrayType( *this ); } 188 193 virtual void accept( Visitor &v ) { v.visit( this ); } … … 258 263 std::list<TypeDecl*> * get_baseParameters(); 259 264 265 virtual bool isComplete() const; 266 260 267 /// Looks up the members of this struct named "name" and places them into "foundDecls". 261 268 /// Clones declarations into "foundDecls", caller responsible for freeing … … 287 294 std::list<TypeDecl*> * get_baseParameters(); 288 295 296 virtual bool isComplete() const; 297 289 298 /// looks up the members of this union named "name" and places them into "foundDecls" 290 299 /// Clones declarations into "foundDecls", caller responsible for freeing … … 310 319 EnumInstType( const EnumInstType &other ) : Parent( other ) {} 311 320 321 // xxx - enum inst does not currently contain a pointer to base, this should be fixed. 322 // virtual bool isComplete() const { return baseEnum()->hasBody(); } 323 312 324 virtual EnumInstType *clone() const { return new EnumInstType( *this ); } 313 325 virtual void accept( Visitor &v ) { v.visit( this ); } … … 325 337 326 338 std::list< Declaration* >& get_members() { return members; } 339 340 virtual bool isComplete() const; 327 341 328 342 virtual TraitInstType *clone() const { return new TraitInstType( *this ); } … … 349 363 bool get_isFtype() const { return isFtype; } 350 364 void set_isFtype( bool newValue ) { isFtype = newValue; } 365 366 virtual bool isComplete() const; 351 367 352 368 virtual TypeInstType *clone() const { return new TypeInstType( *this ); } … … 382 398 } 383 399 400 // virtual bool isComplete() const { return true; } // xxx - not sure if this is right, might need to recursively check complete-ness 401 384 402 virtual TupleType *clone() const { return new TupleType( *this ); } 385 403 virtual void accept( Visitor &v ) { v.visit( this ); } … … 398 416 Expression *get_expr() const { return expr; } 399 417 void set_expr( Expression *newValue ) { expr = newValue; } 418 419 virtual bool isComplete() const { assert( false ); return false; } 400 420 401 421 virtual TypeofType *clone() const { return new TypeofType( *this ); } … … 423 443 void set_isType( bool newValue ) { isType = newValue; } 424 444 445 virtual bool isComplete() const { assert( false ); } // xxx - not sure what to do here 446 425 447 virtual AttrType *clone() const { return new AttrType( *this ); } 426 448 virtual void accept( Visitor &v ) { v.visit( this ); } … … 439 461 VarArgsType(); 440 462 VarArgsType( Type::Qualifiers tq ); 463 464 virtual bool isComplete() const{ return true; } // xxx - is this right? 441 465 442 466 virtual VarArgsType *clone() const { return new VarArgsType( *this ); }
Note: See TracChangeset
for help on using the changeset viewer.