(t testing.TB, env *Env, expr string)
| 4386 | } |
| 4387 | |
| 4388 | func compile(t testing.TB, env *Env, expr string) Program { |
| 4389 | t.Helper() |
| 4390 | prg, err := compileOrError(t, env, expr) |
| 4391 | if err != nil { |
| 4392 | t.Fatal(err) |
| 4393 | } |
| 4394 | return prg |
| 4395 | } |
| 4396 | |
| 4397 | func compileOrError(t testing.TB, env *Env, expr string) (Program, error) { |
| 4398 | t.Helper() |
no test coverage detected