(value: string)
| 33 | } |
| 34 | |
| 35 | export function formatScriptArg(value: string): string { |
| 36 | return formatScriptToken(value, isStructuralScriptToken); |
| 37 | } |
| 38 | |
| 39 | // Use for literal values such as device labels where leading/trailing whitespace must survive round-trips. |
| 40 | export function formatScriptStringLiteral(value: string): string { |
no test coverage detected