2527d15467
Also included some TODOs in areas where parameters and some connections are missing
12 lines
251 B
Java
12 lines
251 B
Java
package abstractSyntaxTree.Statement;
|
|
|
|
import TypeCheck.TypeCheckResult;
|
|
import org.objectweb.asm.MethodVisitor;
|
|
|
|
public interface IStatement {
|
|
|
|
TypeCheckResult typeCheck() throws Exception;
|
|
|
|
void CodeGen(MethodVisitor mv) throws Exception;
|
|
}
|