| 28 | bool isRecovering = false; |
| 29 | |
| 30 | void FillPosition(SyntaxNode * node) |
| 31 | { |
| 32 | node->Position = tokenReader.PeekLoc(); |
| 33 | node->Scope = currentScope; |
| 34 | } |
| 35 | void PushScope(ContainerDecl* containerDecl) |
| 36 | { |
| 37 | currentScope = new Scope(currentScope, containerDecl); |
no test coverage detected