( slot: number, tag: string, constIndex: number | null, localRefIndex: number | null, sourceSpan: ParseSourceSpan, )
| 33 | } |
| 34 | |
| 35 | export function elementStart( |
| 36 | slot: number, |
| 37 | tag: string, |
| 38 | constIndex: number | null, |
| 39 | localRefIndex: number | null, |
| 40 | sourceSpan: ParseSourceSpan, |
| 41 | ): ir.CreateOp { |
| 42 | return elementOrContainerBase( |
| 43 | Identifiers.elementStart, |
| 44 | slot, |
| 45 | tag, |
| 46 | constIndex, |
| 47 | localRefIndex, |
| 48 | sourceSpan, |
| 49 | ); |
| 50 | } |
| 51 | |
| 52 | function elementOrContainerBase( |
| 53 | instruction: o.ExternalReference, |
no test coverage detected