Handles integer subtraction of nodes (in #set() ) * Please look at the Parser.jjt file which is what controls the generation of this class. *
Inheritance: NVelocity.Runtime.Parser.Node.SimpleNode
Ejemplo n.º 1
0
		public virtual Object Visit(ASTSubtractNode node, Object data)
		{
			data = node.ChildrenAccept(this, data);
			return data;
		}
Ejemplo n.º 2
0
		/// <summary>Display an ASTSubtractNode ( - )
		/// </summary>
		public override Object Visit(ASTSubtractNode node, Object data)
		{
			return ShowNode(node, data);
		}
Ejemplo n.º 3
0
	public virtual System.Object visit(ASTSubtractNode node, System.Object data) {
	    data = node.childrenAccept(this, data);
	    return data;
	}
Ejemplo n.º 4
0
	public void  AdditiveExpression() {
	    MultiplicativeExpression();
	    while (true) {
		switch ((jj_ntk_Renamed_Field == - 1)?jj_ntk():jj_ntk_Renamed_Field) {
		case ParserConstants.MINUS: case ParserConstants.PLUS:
			;
			break;

		    default:
			jj_la1[43] = jj_gen;
			//UPGRADE_NOTE: Labeled break statement was changed to a goto statement. 'ms-help://MS.VSCC/commoner/redir/redirect.htm?keyword="jlca1012"'
			goto label_17_brk;

		}
		switch ((jj_ntk_Renamed_Field == - 1)?jj_ntk():jj_ntk_Renamed_Field) {
		    case ParserConstants.PLUS:
			jj_consume_token(ParserConstants.PLUS);
			ASTAddNode jjtn001 = new ASTAddNode(this, ParserTreeConstants.JJTADDNODE);
			bool jjtc001 = true;
			jjtree.openNodeScope(jjtn001);
			//UPGRADE_NOTE: Exception 'java.lang.Throwable' was converted to ' ' which has different behavior. 'ms-help://MS.VSCC/commoner/redir/redirect.htm?keyword="jlca1100"'
			try {
			    MultiplicativeExpression();
			} catch (System.Exception jjte001) {
			    if (jjtc001) {
				jjtree.clearNodeScope(jjtn001);
				jjtc001 = false;
			    } else {
				jjtree.popNode();
			    }
			    if (jjte001 is System.SystemException) { {
				    if (true)
					throw (System.SystemException) jjte001;
				}
			    }
			    if (jjte001 is ParseException) { {
				    if (true)
					throw (ParseException) jjte001;
				}
			    } {
				if (true)
				    throw (System.ApplicationException) jjte001;
			    }
			} finally {
			    if (jjtc001) {
				jjtree.closeNodeScope(jjtn001, 2);
			    }
			}
			break;

		    case ParserConstants.MINUS:
			jj_consume_token(ParserConstants.MINUS);
			ASTSubtractNode jjtn002 = new ASTSubtractNode(this, ParserTreeConstants.JJTSUBTRACTNODE);
			bool jjtc002 = true;
			jjtree.openNodeScope(jjtn002);
			//UPGRADE_NOTE: Exception 'java.lang.Throwable' was converted to ' ' which has different behavior. 'ms-help://MS.VSCC/commoner/redir/redirect.htm?keyword="jlca1100"'
			try {
			    MultiplicativeExpression();
			} catch (System.Exception jjte002) {
			    if (jjtc002) {
				jjtree.clearNodeScope(jjtn002);
				jjtc002 = false;
			    } else {
				jjtree.popNode();
			    }
			    if (jjte002 is System.SystemException) { {
				    if (true)
					throw (System.SystemException) jjte002;
				}
			    }
			    if (jjte002 is ParseException) { {
				    if (true)
					throw (ParseException) jjte002;
				}
			    } {
				if (true)
				    throw (System.ApplicationException) jjte002;
			    }
			} finally {
			    if (jjtc002) {
				jjtree.closeNodeScope(jjtn002, 2);
			    }
			}
			break;

		    default:
			jj_la1[44] = jj_gen;
			jj_consume_token(- 1);
			throw new ParseException();

		}
	    }
	    //UPGRADE_NOTE: Label 'label_17_brk' was added. 'ms-help://MS.VSCC/commoner/redir/redirect.htm?keyword="jlca1011"'
label_17_brk:
	    ;

	}
Ejemplo n.º 5
0
 /// <summary>Display an ASTSubtractNode ( - )
 /// </summary>
 public override System.Object visit(ASTSubtractNode node, System.Object data)
 {
     return showNode(node, data);
 }