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