( name: string, expression: o.Expression | ir.Interpolation, sanitizer: o.Expression | null, sourceSpan: ParseSourceSpan, )
| 591 | } |
| 592 | |
| 593 | export function property( |
| 594 | name: string, |
| 595 | expression: o.Expression | ir.Interpolation, |
| 596 | sanitizer: o.Expression | null, |
| 597 | sourceSpan: ParseSourceSpan, |
| 598 | ): ir.UpdateOp { |
| 599 | return propertyBase(Identifiers.property, name, expression, sanitizer, sourceSpan); |
| 600 | } |
| 601 | |
| 602 | export function control(sourceSpan: ParseSourceSpan | null): ir.UpdateOp { |
| 603 | return call(Identifiers.control, [], sourceSpan); |
no test coverage detected
searching dependent graphs…