(local storage.Engine)
| 21 | } |
| 22 | |
| 23 | func NewCompiler(local storage.Engine) runtime.Compiler { |
| 24 | return NewCompilerWithEnv(exec.NewEnvironment(local, nil)) |
| 25 | } |
| 26 | |
| 27 | func NewCompilerForDB(root *db.Root) runtime.Compiler { |
| 28 | // We configure a remote storage engine into the compiler so that |