(text: string, supportsDirectPipeReferences?: boolean)
| 1759 | } |
| 1760 | |
| 1761 | function parseBinding(text: string, supportsDirectPipeReferences?: boolean): ASTWithSource { |
| 1762 | return createParser(supportsDirectPipeReferences).parseBinding(text, getFakeSpan(), 0); |
| 1763 | } |
| 1764 | |
| 1765 | function parseTemplateBindings(attribute: string, templateUrl = 'foo.html'): TemplateBinding[] { |
| 1766 | const result = _parseTemplateBindings(attribute, templateUrl); |
no test coverage detected