1 package net.sourceforge.pmd.lang.ecmascript.ast;
2
3 import org.mozilla.javascript.ast.XmlDotQuery;
4
5 public class ASTXmlDotQuery extends AbstractInfixEcmascriptNode<XmlDotQuery> {
6 public ASTXmlDotQuery(XmlDotQuery xmlDotQuery) {
7 super(xmlDotQuery);
8 }
9
10 /**
11 * Accept the visitor.
12 */
13 public Object jjtAccept(EcmascriptParserVisitor visitor, Object data) {
14 return visitor.visit(this, data);
15 }
16 }