Changeset ed96731 for src/Validate
- Timestamp:
- Nov 18, 2024, 3:43:38 PM (21 hours ago)
- Branches:
- master
- Children:
- 29075d1
- Parents:
- 0dffe91
- Location:
- src/Validate
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Validate/Autogen.cpp
r0dffe91 red96731 50 50 // -------------------------------------------------------------------------- 51 51 struct AutogenerateRoutines final : 52 public ast::WithDeclsToAdd <>,52 public ast::WithDeclsToAdd, 53 53 public ast::WithShortCircuiting { 54 54 void previsit( const ast::EnumDecl * enumDecl ); -
src/Validate/CompoundLiteral.cpp
r0dffe91 red96731 27 27 28 28 struct CompoundLiteral final : 29 public ast::WithDeclsToAdd <>{29 public ast::WithDeclsToAdd { 30 30 ast::Storage::Classes storageClasses; 31 31 -
src/Validate/HoistStruct.cpp
r0dffe91 red96731 68 68 */ 69 69 struct HoistStructCore final : 70 public ast::WithDeclsToAdd <>, public ast::WithGuards {70 public ast::WithDeclsToAdd, public ast::WithGuards { 71 71 ast::StructDecl const * previsit( ast::StructDecl const * decl ); 72 72 ast::StructDecl const * postvisit( ast::StructDecl const * decl ); -
src/Validate/HoistTypeDecls.cpp
r0dffe91 red96731 22 22 namespace { 23 23 24 struct HoistTypeDecls final : public ast::WithDeclsToAdd <>{24 struct HoistTypeDecls final : public ast::WithDeclsToAdd { 25 25 void previsit( ast::SizeofExpr const * ); 26 26 void previsit( ast::AlignofExpr const * ); -
src/Validate/ImplementEnumFunc.cpp
r0dffe91 red96731 472 472 473 473 struct ImplementEnumFunc final : 474 public ast::WithDeclsToAdd <>, public ast::WithShortCircuiting {474 public ast::WithDeclsToAdd, public ast::WithShortCircuiting { 475 475 void previsit(const ast::EnumDecl* enumDecl); 476 476 void previsit(const ast::FunctionDecl* functionDecl); -
src/Validate/LinkInstanceTypes.cpp
r0dffe91 red96731 27 27 struct LinkTypesCore : public WithNoIdSymbolTable, 28 28 public ast::WithCodeLocation, 29 public ast::WithDeclsToAdd <>,29 public ast::WithDeclsToAdd, 30 30 public ast::WithGuards, 31 31 public ast::WithShortCircuiting, -
src/Validate/ReplaceTypedef.cpp
r0dffe91 red96731 28 28 struct ReplaceTypedefCore final : 29 29 public ast::WithCodeLocation, 30 public ast::WithDeclsToAdd <>,30 public ast::WithDeclsToAdd, 31 31 public ast::WithGuards, 32 32 public ast::WithShortCircuiting,
Note: See TracChangeset
for help on using the changeset viewer.