( name: string, expression: o.Expression | ir.Interpolation, sanitizer: o.Expression | null, sourceSpan: ParseSourceSpan, )
| 614 | } |
| 615 | |
| 616 | export function property( |
| 617 | name: string, |
| 618 | expression: o.Expression | ir.Interpolation, |
| 619 | sanitizer: o.Expression | null, |
| 620 | sourceSpan: ParseSourceSpan, |
| 621 | ): ir.UpdateOp { |
| 622 | return propertyBase(Identifiers.property, name, expression, sanitizer, sourceSpan); |
| 623 | } |
| 624 | |
| 625 | export function control(sourceSpan: ParseSourceSpan | null): ir.UpdateOp { |
| 626 | return call(Identifiers.control, [], sourceSpan); |
no test coverage detected