Changes in src/Common/PassVisitor.h [e67991f:e3d7f9f]
- File:
-
- 1 edited
-
src/Common/PassVisitor.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Common/PassVisitor.h
re67991f re3d7f9f 279 279 virtual Statement * mutate( FinallyStmt * finallyStmt ) override final; 280 280 virtual Statement * mutate( WaitForStmt * waitforStmt ) override final; 281 virtual Declaration* mutate( WithStmt * withStmt ) override final;281 virtual Statement * mutate( WithStmt * withStmt ) override final; 282 282 virtual NullStmt * mutate( NullStmt * nullStmt ) override final; 283 283 virtual Statement * mutate( DeclStmt * declStmt ) override final; … … 420 420 void indexerAddUnionFwd ( const UnionDecl * node ) { indexer_impl_addUnionFwd ( pass, 0, node ); } 421 421 void indexerAddTrait ( const TraitDecl * node ) { indexer_impl_addTrait ( pass, 0, node ); } 422 void indexerAddWith ( const std::list< Expression * > & exprs, const Declaration* withStmt ) { indexer_impl_addWith( pass, 0, exprs, withStmt ); }422 void indexerAddWith ( const std::list< Expression * > & exprs, const BaseSyntaxNode * withStmt ) { indexer_impl_addWith( pass, 0, exprs, withStmt ); } 423 423 424 424
Note:
See TracChangeset
for help on using the changeset viewer.