(t *testing.T)
| 39 | } |
| 40 | |
| 41 | func TestCompileCodegen(t *testing.T) { |
| 42 | c := makeCompiler(t) |
| 43 | r := strings.NewReader(`counter i |
| 44 | // { |
| 45 | i++ |
| 46 | }`) |
| 47 | _, err := c.Compile("test", r) |
| 48 | if err != nil { |
| 49 | t.Error(err) |
| 50 | } |
| 51 | } |
nothing calls this directly
no test coverage detected