This commit is contained in:
Anuken
2021-01-03 16:21:17 -05:00
parent 3497212b95
commit 68535bfcaa

View File

@@ -0,0 +1,23 @@
package mindustry.logic;
import arc.struct.*;
public class LParser{
char[] chars;
int position;
LParser(String text){
this.chars = text.toCharArray();
}
public static Seq<LStatement> parse(String text){
return new LParser(text).parse();
}
Seq<LStatement> parse(){
Seq<LStatement> statements = new Seq<>();
//TODO
return statements;
}
}