( slot: number, tag: string, constIndex: number | null, localRefIndex: number | null, sourceSpan: ParseSourceSpan, )
| 16 | // depending on the exact arguments. |
| 17 | |
| 18 | export function element( |
| 19 | slot: number, |
| 20 | tag: string, |
| 21 | constIndex: number | null, |
| 22 | localRefIndex: number | null, |
| 23 | sourceSpan: ParseSourceSpan, |
| 24 | ): ir.CreateOp { |
| 25 | return elementOrContainerBase( |
| 26 | Identifiers.element, |
| 27 | slot, |
| 28 | tag, |
| 29 | constIndex, |
| 30 | localRefIndex, |
| 31 | sourceSpan, |
| 32 | ); |
| 33 | } |
| 34 | |
| 35 | export function elementStart( |
| 36 | slot: number, |
no test coverage detected
searching dependent graphs…