(color: string, theme: Theme)
| 848 | } |
| 849 | |
| 850 | function tryModifyBorderColor(color: string, theme: Theme) { |
| 851 | return handleRawColorValue(color, theme, modifyBorderColor); |
| 852 | } |
| 853 | |
| 854 | function insertVarValues(source: string, varValues: Map<string, string>, fullStack = new Set<string>()) { |
| 855 | let containsUnresolvedVar = false; |
no test coverage detected