| 33 | node->Scope = currentScope; |
| 34 | } |
| 35 | void PushScope(ContainerDecl* containerDecl) |
| 36 | { |
| 37 | currentScope = new Scope(currentScope, containerDecl); |
| 38 | } |
| 39 | void PopScope() |
| 40 | { |
| 41 | currentScope = currentScope->Parent; |
no outgoing calls
no test coverage detected