(filename string, writer io.Writer)
| 17 | } |
| 18 | |
| 19 | func (a *Import) Parse(filename string, writer io.Writer) (file *ast.File, err error) { |
| 20 | return a.Base.Parse(filename, writer) |
| 21 | } |
| 22 | |
| 23 | func (a *Import) Rollback(file *ast.File) error { |
| 24 | if a.ImportPath == "" { |