Changes in src/AST/Visitor.hpp [400b8be:3b0bc16]
- File:
-
- 1 edited
-
src/AST/Visitor.hpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Visitor.hpp
r400b8be r3b0bc16 41 41 virtual const ast::Stmt * visit( const ast::ForStmt * ) = 0; 42 42 virtual const ast::Stmt * visit( const ast::SwitchStmt * ) = 0; 43 virtual const ast:: CaseClause * visit( const ast::CaseClause* ) = 0;43 virtual const ast::Stmt * visit( const ast::CaseStmt * ) = 0; 44 44 virtual const ast::Stmt * visit( const ast::BranchStmt * ) = 0; 45 45 virtual const ast::Stmt * visit( const ast::ReturnStmt * ) = 0; 46 46 virtual const ast::Stmt * visit( const ast::ThrowStmt * ) = 0; 47 47 virtual const ast::Stmt * visit( const ast::TryStmt * ) = 0; 48 virtual const ast:: CatchClause * visit( const ast::CatchClause* ) = 0;49 virtual const ast:: FinallyClause * visit( const ast::FinallyClause* ) = 0;48 virtual const ast::Stmt * visit( const ast::CatchStmt * ) = 0; 49 virtual const ast::Stmt * visit( const ast::FinallyStmt * ) = 0; 50 50 virtual const ast::Stmt * visit( const ast::SuspendStmt * ) = 0; 51 51 virtual const ast::Stmt * visit( const ast::WaitForStmt * ) = 0;
Note:
See TracChangeset
for help on using the changeset viewer.