buildFrom<T> method
- @useResult
- Parser<
T> parser
inherited
Builds a composite parser starting with the specified parser
.
As argument either pass a reference to a production in this definition, or any other parser using productions in this definition.
Implementation
@useResult
Parser<T> buildFrom<T>(Parser<T> parser) => resolve<T>(parser);