Changes in / [92a6e02:ba417e2]
- Location:
- src
- Files:
-
- 3 edited
-
AST/Pass.impl.hpp (modified) (1 diff)
-
AST/Stmt.hpp (modified) (1 diff)
-
SynTree/Statement.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Pass.impl.hpp
r92a6e02 rba417e2 953 953 // For now this isn't visited, it is unclear if this causes problem 954 954 // if all tests are known to pass, remove this code 955 VISIT(956 maybe_accept( node, &ImplicitCtorDtorStmt::callStmt );957 )955 // VISIT( 956 // maybe_accept( node, &ImplicitCtorDtorStmt::callStmt ); 957 // ) 958 958 959 959 VISIT_END( Stmt, node ); -
src/AST/Stmt.hpp
r92a6e02 rba417e2 399 399 class ImplicitCtorDtorStmt final : public Stmt { 400 400 public: 401 ptr<Stmt> callStmt;401 readonly<Stmt> callStmt; 402 402 403 403 ImplicitCtorDtorStmt( const CodeLocation & loc, const Stmt * callStmt, -
src/SynTree/Statement.h
r92a6e02 rba417e2 502 502 class ImplicitCtorDtorStmt : public Statement { 503 503 public: 504 // the constructor/destructor call statement; owned here for a while, eventually transferred elsewhere504 // Non-owned pointer to the constructor/destructor statement 505 505 Statement * callStmt; 506 506
Note:
See TracChangeset
for help on using the changeset viewer.