I am currently developing an easy compiler for the language BASIC and I have found some problems which I would like to ask you.
The first one is easy, where I should define my tokens? I mean, in the Lexer.java file I send the tokens to the parser using the expression: return symbol(sym.STATIC); STATIC is a token for me, but I don't know where to define it.
Second, where I should define the main class in which I create the instances of Lexer and Parser? In the Parser class or in another?
Thanks in advanced.