(name: string)
| 773 | variableSyntax instanceof Map ? variableSyntax : new Map(Object.entries(variableSyntax ?? {})) |
| 774 | |
| 775 | function getVariableSyntax(name: string): string | undefined { |
| 776 | return variableSyntaxMap.get(normalizeCustomPropertyName(name.trim())) |
| 777 | } |
| 778 | |
| 779 | function applyDisplayMode(value: string): string { |
| 780 | if (!displayMode || displayMode === 'reference') { |
no test coverage detected