cmpl.go 166 B

1234567891011
  1. package otto
  2. import (
  3. "github.com/robertkrimen/otto/ast"
  4. "github.com/robertkrimen/otto/file"
  5. )
  6. type compiler struct {
  7. file *file.File
  8. program *ast.Program
  9. }