(input string, config *conf.Config)
| 145 | } |
| 146 | |
| 147 | func ParseWithConfig(input string, config *conf.Config) (*Tree, error) { |
| 148 | return new(Parser).Parse(input, config) |
| 149 | } |
| 150 | |
| 151 | func (p *Parser) error(format string, args ...any) { |
| 152 | p.errorAt(p.current, format, args...) |
searching dependent graphs…