197198199200201202203204205206207
} } private Node parseAtom() throws IllegalArgumentException { if (match('.')) { return new DotNode(); } else if (match('(')) { if (match(')')) { return new EmptyNode(); }