/* Production 65, chapter 3.4, corba 2.3.1 */ public void boolean_type() { /*@bgen(jjtree) boolean_type */ ASTboolean_type jjtn000 = new ASTboolean_type(this, IDLParserTreeConstants.JJTBOOLEAN_TYPE); bool jjtc000 = true; jjtree.openNodeScope(jjtn000); try { jj_consume_token(57); } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } }
/** * @see parser.IDLParserVisitor#visit(ASTboolean_type, Object) * @param data unused * @return a TypeContainer for the boolean type */ public Object visit(ASTboolean_type node, Object data) { TypeContainer container = new TypeContainer(typeof(System.Boolean)); return container; }