(selectorlessEnabled = false)
| 281 | * Construct a `BindingParser` with a default configuration. |
| 282 | */ |
| 283 | export function makeBindingParser(selectorlessEnabled = false): BindingParser { |
| 284 | return new BindingParser(new Parser(new Lexer(), selectorlessEnabled), elementRegistry, []); |
| 285 | } |
| 286 | |
| 287 | /** |
| 288 | * Information about the template which was extracted during parsing. |
no outgoing calls
no test coverage detected
searching dependent graphs…