ast: move "ast" types from root to ir sub-package

Closes #32
This commit is contained in:
Michael McLoughlin
2019-01-06 14:21:10 -08:00
parent 4a920c22b5
commit 0f63e0906d
15 changed files with 3925 additions and 3925 deletions

View File

@@ -7,13 +7,13 @@ import (
"path/filepath"
"strings"
"github.com/mmcloughlin/avo"
"github.com/mmcloughlin/avo/internal/stack"
"github.com/mmcloughlin/avo/ir"
)
// Printer can produce output for an avo File.
type Printer interface {
Print(*avo.File) ([]byte, error)
Print(*ir.File) ([]byte, error)
}
// Builder can construct a printer.