( name: string, expression: o.Expression | ir.Interpolation, sourceSpan: ParseSourceSpan, )
| 583 | } |
| 584 | |
| 585 | export function ariaProperty( |
| 586 | name: string, |
| 587 | expression: o.Expression | ir.Interpolation, |
| 588 | sourceSpan: ParseSourceSpan, |
| 589 | ): ir.UpdateOp { |
| 590 | return propertyBase(Identifiers.ariaProperty, name, expression, null, sourceSpan); |
| 591 | } |
| 592 | |
| 593 | export function property( |
| 594 | name: string, |
nothing calls this directly
no test coverage detected
searching dependent graphs…