(id: ComponentIdentifier)
| 587 | // ============================================================================= |
| 588 | |
| 589 | function serializeComponentIdentifier(id: ComponentIdentifier): string { |
| 590 | let result = `"${id.name}"`; |
| 591 | const params = id.parameters ?? {}; |
| 592 | if (params.sf) result += ";sf"; |
| 593 | if (params.key !== undefined) result += `;key="${params.key}"`; |
| 594 | if (params.bs) result += ";bs"; |
| 595 | if (params.req) result += ";req"; |
| 596 | if (params.tr) result += ";tr"; |
| 597 | if (params.name !== undefined) result += `;name="${params.name}"`; |
| 598 | return result; |
| 599 | } |
| 600 | |
| 601 | function buildSignatureParamsValue( |
| 602 | components: ComponentIdentifier[], |
no outgoing calls
no test coverage detected