()
| 435 | } |
| 436 | |
| 437 | public override toString(): string { |
| 438 | const res = (arg: string) => `${this.tagSourceCode()}(${arg})\`…\``; |
| 439 | |
| 440 | if (typeof this.component === 'string') { |
| 441 | if (this.component === 'FunctionalComponent') { |
| 442 | return res('() => {…}'); |
| 443 | } |
| 444 | |
| 445 | return res(`'${this.component}'`); |
| 446 | } |
| 447 | |
| 448 | return res(this.component.source); |
| 449 | } |
| 450 | |
| 451 | protected createStaticSelectorValue( |
| 452 | extendsValue: StaticStyledValue | null |
no outgoing calls