Changeset 7a780ad for src/Common
- Timestamp:
 - Apr 18, 2024, 5:19:17 PM (19 months ago)
 - Branches:
 - master
 - Children:
 - 38093ae
 - Parents:
 - 60c5b6d
 - File:
 - 
      
- 1 edited
 
- 
          
  src/Common/ResolvProtoDump.cpp (modified) (4 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
src/Common/ResolvProtoDump.cpp
r60c5b6d r7a780ad 229 229 void previsit( const ast::EnumInstType * ) { 230 230 // TODO: Add the meaningful text representation of typed enum 231 ss << (int)ast::Basic Type::SignedInt;231 ss << (int)ast::BasicKind::SignedInt; 232 232 } 233 233 … … 255 255 // TODO: Support 0 and 1 with their type names and conversions. 256 256 void previsit( const ast::ZeroType * ) { 257 ss << (int)ast::Basic Type::SignedInt;257 ss << (int)ast::BasicKind::SignedInt; 258 258 } 259 259 260 260 void previsit( const ast::OneType * ) { 261 ss << (int)ast::Basic Type::SignedInt;261 ss << (int)ast::BasicKind::SignedInt; 262 262 } 263 263 … … 366 366 // TODO: Extra expression to resolve argument. 367 367 void previsit( const ast::SizeofExpr * ) { 368 ss << (int)ast::Basic Type::LongUnsignedInt;368 ss << (int)ast::BasicKind::LongUnsignedInt; 369 369 visit_children = false; 370 370 } 371 371 void previsit( const ast::AlignofExpr * ) { 372 ss << (int)ast::Basic Type::LongUnsignedInt;372 ss << (int)ast::BasicKind::LongUnsignedInt; 373 373 visit_children = false; 374 374 } 375 375 void previsit( const ast::UntypedOffsetofExpr * ) { 376 ss << (int)ast::Basic Type::LongUnsignedInt;376 ss << (int)ast::BasicKind::LongUnsignedInt; 377 377 visit_children = false; 378 378 } … … 753 753 // &? Address of operator. 754 754 out << "#$ptr<T> $addr T" << std::endl; 755 const int intId = (int)ast::Basic Type::SignedInt;755 const int intId = (int)ast::BasicKind::SignedInt; 756 756 // ?&&? ?||? ?: Logical operators. 757 757 out << intId << " $and " << intId << ' ' << intId << std::endl;  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.