Represents compilable AST element. @author xxDark
| 9 | * @author xxDark |
| 10 | */ |
| 11 | public interface Compilable { |
| 12 | |
| 13 | /** |
| 14 | * Compiles this element. |
| 15 | * |
| 16 | * @param compilation |
| 17 | * Compilation context. |
| 18 | * |
| 19 | * @throws AssemblerException |
| 20 | * When compilation has failed. |
| 21 | */ |
| 22 | void compile(MethodCompilation compilation) throws AssemblerException; |
| 23 | } |
no outgoing calls
no test coverage detected