2024-04-25 13:27:38 +02:00
|
|
|
package abstractSyntaxTree.Modifier;
|
|
|
|
|
|
|
|
public interface IModifier {
|
2024-05-07 13:50:51 +02:00
|
|
|
|
|
|
|
//TODO: Maybe we can just use an enum for the Modifier
|
|
|
|
// if there is no typeCheck and no CodeGen
|
|
|
|
|
2024-05-02 13:12:39 +02:00
|
|
|
// not type or type check
|
2024-04-25 13:27:38 +02:00
|
|
|
|
|
|
|
// visit method for code generation
|
|
|
|
}
|