(scopes: string[])
| 325 | } |
| 326 | |
| 327 | addSearchScopes(scopes: string[]) { |
| 328 | for(let scope of scopes) { |
| 329 | if(this.searchScopes.indexOf(scope) === -1) { |
| 330 | this.searchScopes.push(scope); |
| 331 | } |
| 332 | } |
| 333 | } |
| 334 | |
| 335 | subBlock() { |
| 336 | let neue = new ParseBlock(`${this.id}|sub${this.nodeId++}`, this.variableLookup); |