(key: string)
| 32 | |
| 33 | function storeLiteralBinding(literalValues: { [name: string]: TSNode }, rawKey: string, value: TSNode): void { |
| 34 | const store = (key: string) => { |
| 35 | if (!key) {return;} |
| 36 | literalValues[key] = value; |
| 37 | }; |
| 38 | |
| 39 | const key = rawKey.trim(); |
| 40 | if (!key) {return;} |
no outgoing calls
no test coverage detected