(valuesToo = true)
| 161 | } |
| 162 | |
| 163 | public reset(valuesToo = true) { |
| 164 | this.session = undefined; |
| 165 | if (valuesToo) { |
| 166 | this.value = this.type = this.prevValue = ''; |
| 167 | this.variablesReference = 0; |
| 168 | } |
| 169 | for (const child of this.children || []) { |
| 170 | child.reset(valuesToo); |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | private namedVariables: number = 0; |
| 175 | private indexedVariables: number = 0; |
no outgoing calls
no test coverage detected