grammaranalyzer template

This commit is contained in:
ChUrl
2020-12-03 20:05:51 +01:00
parent 88aec490ed
commit 11a1591b9b

View File

@ -0,0 +1,23 @@
package parser;
import java.util.Map;
import java.util.Set;
public class LL1GrammarAnalyzer {
public Set<String> getNullable() {
return null;
}
public Map<String, Set<String>> getFirst() {
return null;
}
public Map<String, Set<String>> getFollow() {
return null;
}
public ILL1ParsingTable getTable() {
return null;
}
}