(
valueCache: ValueCache,
cssText: string,
loc?: SourceLocation | null
)
| 41 | } |
| 42 | |
| 43 | public override extractRules( |
| 44 | valueCache: ValueCache, |
| 45 | cssText: string, |
| 46 | loc?: SourceLocation | null |
| 47 | ): Rules { |
| 48 | const rules: Rules = {}; |
| 49 | |
| 50 | const selector = `.${this.className}`; |
| 51 | |
| 52 | rules[selector] = { |
| 53 | cssText, |
| 54 | className: this.className, |
| 55 | displayName: this.displayName, |
| 56 | start: loc?.start ?? null, |
| 57 | }; |
| 58 | |
| 59 | return rules; |
| 60 | } |
| 61 | |
| 62 | public getStaticValue(): StaticClassNameValue { |
| 63 | return { |
nothing calls this directly
no outgoing calls
no test coverage detected