661662663664665666667668
* @param node the node being exited * * @return the node to add to the parse tree */ protected Node exitNullType(Production node) { node.addValue(new NullType()); return node; }
839840841842843844845846
*/ protected Node exitSetType(Production node) { // TODO: implement set type support log.addError(getLocation(node), "SET type currently unsupported"); node.addValue(new NullType()); return node; }
855856857858859860861862
*/ protected Node exitSetOfType(Production node) { // TODO: implement set of type support log.addError(getLocation(node), "SET OF type currently unsupported"); node.addValue(new NullType()); return node; }
883884885886887888889890
*/ protected Node exitEnumeratedType(Production node) { // TODO: implement enumerated type support log.addError(getLocation(node), "ENUMERATED type currently unsupported"); node.addValue(new NullType()); return node; }
899900901902903904905906
*/ protected Node exitSelectionType(Production node) { // TODO: implement selection type support log.addError(getLocation(node), "selection type currently unsupported"); node.addValue(new NullType()); return node; }
10161017101810191020102110221023
*/ protected Node exitAnyType(Production node) { // TODO: implement any type support log.addError(getLocation(node), "ANY type currently unsupported"); node.addValue(new NullType()); return node; }