2527d15467
Also included some TODOs in areas where parameters and some connections are missing
12 lines
253 B
Java
12 lines
253 B
Java
package abstractSyntaxTree.Modifier;
|
|
|
|
public interface IModifier {
|
|
|
|
//TODO: Maybe we can just use an enum for the Modifier
|
|
// if there is no typeCheck and no CodeGen
|
|
|
|
// not type or type check
|
|
|
|
// visit method for code generation
|
|
}
|