Changeset c1e66d9 for src/ResolvExpr/ResolveTypeof.h
- Timestamp:
- Sep 21, 2023, 10:15:37 PM (3 months ago)
- Branches:
- master
- Children:
- deda7e6
- Parents:
- 01510fe
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/ResolveTypeof.h
r01510fe rc1e66d9 17 17 18 18 class Type; 19 class ListInit; 19 20 namespace SymTab { 20 21 class Indexer; … … 22 23 namespace ast { 23 24 class Type; 25 class ListInit; 24 26 class ObjectDecl; 25 27 } … … 28 30 struct ResolveContext; 29 31 30 Type *resolveTypeof( Type *, const SymTab::Indexer &indexer );32 Type *resolveTypeof( Type *, const SymTab::Indexer &indexer ); 31 33 const ast::Type * resolveTypeof( const ast::Type *, const ResolveContext & ); 32 const ast::Type * fixArrayType( const ast::Type *, const ResolveContext & ); 34 const ast::Type * fixArrayType( const ast::Type *, const ResolveContext &, const ast::ListInit * ); 35 const ast::Type * fixEnumeratedArray( const ast::Type *, const ResolveContext & ); 33 36 const ast::ObjectDecl * fixObjectType( const ast::ObjectDecl * decl , const ResolveContext & ); 34 const ast::ObjectDecl * fixObjectInit( const ast::ObjectDecl * decl , const ResolveContext & );37 const ast::ObjectDecl * fixObjectInit( const ast::ObjectDecl * decl , const ResolveContext & ); 35 38 } // namespace ResolvExpr 36 39
Note: See TracChangeset
for help on using the changeset viewer.