(str: string)
| 503 | // compiler helpers |
| 504 | |
| 505 | const escape = (str: string) => "[" + str.replace(/\]/g, "]]").replace(/\./g, "].[") + "]" |
| 506 | |
| 507 | function numberToParamName(n: number) { |
| 508 | return `${Math.ceil(n + 1)}` |
no outgoing calls
no test coverage detected