| 6 | ) |
| 7 | |
| 8 | type Ast interface { |
| 9 | // Parse 解析文件/代码 |
| 10 | Parse(filename string, writer io.Writer) (file *ast.File, err error) |
| 11 | // Rollback 回滚 |
| 12 | Rollback(file *ast.File) error |
| 13 | // Injection 注入 |
| 14 | Injection(file *ast.File) error |
| 15 | // Format 格式化输出 |
| 16 | Format(filename string, writer io.Writer, file *ast.File) error |
| 17 | } |
no outgoing calls
no test coverage detected