Ejemplo n.º 1
0
/* Production 64, chapter 3.4, corba 2.3.1 */
  public void wide_char_type() {
 /*@bgen(jjtree) wide_char_type */
  ASTwide_char_type jjtn000 = new ASTwide_char_type(this, IDLParserTreeConstants.JJTWIDE_CHAR_TYPE);
  bool jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
    try {
      jj_consume_token(56);
    } finally {
    if (jjtc000) {
      jjtree.closeNodeScope(jjtn000, true);
    }
    }
  }
Ejemplo n.º 2
0
 /**
  * @see parser.IDLParserVisitor#visit(ASTwide_char_type, Object)
  * @param data unused
  * @return a type type container for the wchar type
  */
 public Object visit(ASTwide_char_type node, Object data) {
     AttributeExtCollection attrs = new AttributeExtCollection(
         new Attribute[] { new WideCharAttribute(true) });
     TypeContainer containter = new TypeContainer(typeof(System.Char), attrs);
     return containter;
 }