ASTStringLiteral support.
Inheritance: NVelocity.Runtime.Parser.Node.SimpleNode
Exemplo n.º 1
0
		public virtual Object Visit(ASTStringLiteral node, Object data)
		{
			data = node.ChildrenAccept(this, data);
			return data;
		}
Exemplo n.º 2
0
		/// <summary>Display an ASTStringLiteral node
		/// </summary>
		public override Object Visit(ASTStringLiteral node, Object data)
		{
			return ShowNode(node, data);
		}
Exemplo n.º 3
0
	public virtual System.Object visit(ASTStringLiteral node, System.Object data) {
	    data = node.childrenAccept(this, data);
	    return data;
	}
Exemplo n.º 4
0
	public void  StringLiteral() {
	    /*@bgen(jjtree) StringLiteral */
	    ASTStringLiteral jjtn000 = new ASTStringLiteral(this, ParserTreeConstants.JJTSTRINGLITERAL);
	    bool jjtc000 = true;
	    jjtree.openNodeScope(jjtn000);
	    try {
		jj_consume_token(ParserConstants.STRING_LITERAL);
	    } finally {
		if (jjtc000) {
		    jjtree.closeNodeScope(jjtn000, true);
		}
	    }
	}
Exemplo n.º 5
0
 /// <summary>Display an ASTStringLiteral node
 /// </summary>
 public override System.Object visit(ASTStringLiteral node, System.Object data)
 {
     return showNode(node, data);
 }