(input string)
| 141 | } |
| 142 | |
| 143 | func Parse(input string) (*Tree, error) { |
| 144 | return ParseWithConfig(input, nil) |
| 145 | } |
| 146 | |
| 147 | func ParseWithConfig(input string, config *conf.Config) (*Tree, error) { |
| 148 | return new(Parser).Parse(input, config) |
searching dependent graphs…