()
| 395 | |
| 396 | // Replace environment and configuration variables. |
| 397 | const regexp: () => RegExp = () => /\$\{((env|config|workspaceFolder)(\.|:))?(.*?)\}/g; |
| 398 | let ret: string = input; |
| 399 | const cycleCache = new Set<string>(); |
| 400 | while (!cycleCache.has(ret)) { |