Files
dhbw-compilerbau/ÜB-Praxis-Abstiegsparser für X-Leer/src/de/dhbw/compiler/xparser/XParser.java

27 lines
458 B
Java

/* **********************************************
* Duale Hochschule Baden-Württemberg Karlsruhe
* Prof. Dr. Jörn Eisenbiegler
*
* Vorlesung Übersetzerbau
* Praxis X Abstiegsparser
* - Abstiegsparser
*
* **********************************************
*/
package de.dhbw.compiler.xparser;
public class XParser {
public XParser(TokenReader in) {
//TODO Initialization
}
public Tree parseProgram() {
//TODO Parser
return null;
}
}