()
| 29 | ) |
| 30 | |
| 31 | func init() { |
| 32 | scanner.NewNumValFn = func(a constant.Value, s string, b bool) interface{} { return tree.NewNumVal(a, s, b) } |
| 33 | scanner.NewPlaceholderFn = func(s string) (interface{}, error) { return tree.NewPlaceholder(s) } |
| 34 | } |
| 35 | |
| 36 | // Parser wraps a scanner, parser and other utilities present in the parser |
| 37 | // package. |
nothing calls this directly
no test coverage detected
searching dependent graphs…