private AugmentedParseTable createParseTable() throws StateConflict, InvalidStartRule, StrandedSymbol {
DefaultTranslationMapper mapper = createMapper() ;
ImmutableMap<String,AssocType> assoc = new Tree23Map<String,AssocType>() ;
assoc = assoc.insert("+", AssocType.right) ;
assoc = assoc.insert("*", AssocType.right) ;
Grammar g = new Grammar("E'",mapper.rules.keySet(),assoc,
new Tree23Map<String,Integer>(),
new Tree23Map<Rule,Integer>()) ;
return new AugmentedParseTableImpl(mapper,ParserGenerator.createParseTable(g));
}