/** * BSD-style license; for more info see http://pmd.sourceforge.net/license.html */ package net.sourceforge.pmd.lang.ecmascript.ast; import org.mozilla.javascript.ast.LetNode; public class ASTLetNode extends AbstractEcmascriptNode<LetNode> { public ASTLetNode(LetNode letNode) { super(letNode); } /** * Accept the visitor. */ public Object jjtAccept(EcmascriptParserVisitor visitor, Object data) { return visitor.visit(this, data); } public ASTVariableDeclaration getVariables() { return (ASTVariableDeclaration) jjtGetChild(0); } public boolean hasBody() { return node.getBody() != null; } public EcmascriptNode<?> getBody() { if (hasBody()) { return (EcmascriptNode<?>) jjtGetChild(jjtGetNumChildren() - 1); } else { return null; } } }