delete modifier

This commit is contained in:
Krauß, Josefine 2024-05-08 13:51:36 +02:00
parent 0f61e843a4
commit 3cff398228
3 changed files with 0 additions and 19 deletions

View File

@ -1,11 +0,0 @@
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
}

View File

@ -1,4 +0,0 @@
package abstractSyntaxTree.Modifier;
public class PrivateModifier implements IModifier{
}

View File

@ -1,4 +0,0 @@
package abstractSyntaxTree.Modifier;
public class PublicModifier implements IModifier{
}