01 package net.sourceforge.pmd.lang.ecmascript.ast;
02
03 import org.mozilla.javascript.ast.XmlDotQuery;
04
05 public class ASTXmlDotQuery extends AbstractInfixEcmascriptNode<XmlDotQuery> {
06 public ASTXmlDotQuery(XmlDotQuery xmlDotQuery) {
07 super(xmlDotQuery);
08 }
09
10 /**
11 * Accept the visitor.
12 */
13 public Object jjtAccept(EcmascriptParserVisitor visitor, Object data) {
14 return visitor.visit(this, data);
15 }
16 }
|