1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package org.archphantom.shenanigans.parser; import java.io.IOException; import org.archphantom.shenanigans.elements.Program; public class Parser { private Tokenizer tkn; public Parser (Tokenizer tkn) { this.tkn = tkn; } public Program program () throws IOException { return null; } }