Example #1
0
		public virtual Object Visit(ASTAssignment node, Object data)
		{
			data = node.ChildrenAccept(this, data);
			return data;
		}
Example #2
0
		/// <summary>Display an ASTAssignment node ( = )
		/// </summary>
		public override Object Visit(ASTAssignment node, Object data)
		{
			return ShowNode(node, data);
		}
	public virtual System.Object visit(ASTAssignment node, System.Object data) {
	    data = node.childrenAccept(this, data);
	    return data;
	}
Example #4
0
	public void  Assignment() {
	    /*@bgen(jjtree) #Assignment( 2) */
	    ASTAssignment jjtn000 = new ASTAssignment(this, ParserTreeConstants.JJTASSIGNMENT);
	    bool jjtc000 = true;
	    jjtree.openNodeScope(jjtn000);
	    //UPGRADE_NOTE: Exception 'java.lang.Throwable' was converted to ' ' which has different behavior. 'ms-help://MS.VSCC/commoner/redir/redirect.htm?keyword="jlca1100"'
	    try {
		PrimaryExpression();
		jj_consume_token(ParserConstants.EQUALS);
		Expression();
	    } catch (System.Exception jjte000) {
		if (jjtc000) {
		    jjtree.clearNodeScope(jjtn000);
		    jjtc000 = false;
		} else {
		    jjtree.popNode();
		}
		if (jjte000 is System.SystemException) { {
			if (true)
			    throw (System.SystemException) jjte000;
		    }
		}
		if (jjte000 is ParseException) { {
			if (true)
			    throw (ParseException) jjte000;
		    }
		} {
		    if (true)
			throw (System.ApplicationException) jjte000;
		}
	    } finally {
		if (jjtc000) {
		    jjtree.closeNodeScope(jjtn000, 2);
		}
	    }
	}
Example #5
0
 /// <summary>Display an ASTAssignment node ( = )
 /// </summary>
 public override System.Object visit(ASTAssignment node, System.Object data)
 {
     return showNode(node, data);
 }