"SLL_ATNTransitions=1, SLL_DFATransitions=0, LL_Fallback=0, LL_lookahead=0, LL_ATNTransitions=0}";
assertEquals(expecting, info[0].toString());
}
@Test public void testLL2() throws Exception {
Grammar g = new Grammar(
"parser grammar T;\n" +
"s : ID ';'{}\n" +
" | ID '.'\n" +
" ;\n",
lg);