(block: string, variable: string)
| 86 | } |
| 87 | |
| 88 | function extractVariable(block: string, variable: string): string | null { |
| 89 | return extractVariables(block).get(variable) ?? null; |
| 90 | } |
| 91 | |
| 92 | function extractVariables(block: string): Map<string, string> { |
| 93 | const variables = new Map<string, string>(); |
no test coverage detected