( name: string, expression: o.Expression | ir.Interpolation, sourceSpan: ParseSourceSpan, )
| 606 | } |
| 607 | |
| 608 | export function ariaProperty( |
| 609 | name: string, |
| 610 | expression: o.Expression | ir.Interpolation, |
| 611 | sourceSpan: ParseSourceSpan, |
| 612 | ): ir.UpdateOp { |
| 613 | return propertyBase(Identifiers.ariaProperty, name, expression, null, sourceSpan); |
| 614 | } |
| 615 | |
| 616 | export function property( |
| 617 | name: string, |
nothing calls this directly
no test coverage detected