( slot: number, templateFnRef: o.Expression, decls: number, vars: number, tag: string | null, constIndex: number | null, localRefs: number | null, sourceSpan: ParseSourceSpan, )
| 804 | } |
| 805 | |
| 806 | export function domTemplate( |
| 807 | slot: number, |
| 808 | templateFnRef: o.Expression, |
| 809 | decls: number, |
| 810 | vars: number, |
| 811 | tag: string | null, |
| 812 | constIndex: number | null, |
| 813 | localRefs: number | null, |
| 814 | sourceSpan: ParseSourceSpan, |
| 815 | ): ir.CreateOp { |
| 816 | return templateBase( |
| 817 | Identifiers.domTemplate, |
| 818 | slot, |
| 819 | templateFnRef, |
| 820 | decls, |
| 821 | vars, |
| 822 | tag, |
| 823 | constIndex, |
| 824 | localRefs, |
| 825 | sourceSpan, |
| 826 | ); |
| 827 | } |
| 828 | |
| 829 | const PIPE_BINDINGS: o.ExternalReference[] = [ |
| 830 | Identifiers.pipeBind1, |
nothing calls this directly
no test coverage detected