(path string)
| 14 | ) |
| 15 | |
| 16 | func parse(path string) (ast.Value, error) { |
| 17 | file, err := fs.Open(path) |
| 18 | if err != nil { |
| 19 | return nil, err |
| 20 | } |
| 21 | return sup.NewParser(file).ParseValue() |
| 22 | } |
| 23 | |
| 24 | const testFile = "test.sup" |
| 25 |
no test coverage detected