12 lines
166 B
Go
12 lines
166 B
Go
package otto
|
|
|
|
import (
|
|
"github.com/robertkrimen/otto/ast"
|
|
"github.com/robertkrimen/otto/file"
|
|
)
|
|
|
|
type compiler struct {
|
|
file *file.File
|
|
program *ast.Program
|
|
}
|