(str string)
| 40 | } |
| 41 | |
| 42 | func fml(str string) ast.Term { |
| 43 | t, err := parse.LiteralOrFormula(str) |
| 44 | if err != nil { |
| 45 | panic(fmt.Errorf("bad fml syntax in test case: %s got %w", str, err)) |
| 46 | } |
| 47 | return t |
| 48 | } |
| 49 | |
| 50 | func atom(str string) ast.Atom { |
| 51 | term, err := parse.Term(str) |
no test coverage detected