1 /** 2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3 */ 4 package net.sourceforge.pmd.lang.ecmascript.ast; 5 6 import org.mozilla.javascript.ast.Scope; 7 8 public class ASTScope extends AbstractEcmascriptNode<Scope> { 9 public ASTScope(Scope scope) { 10 super(scope); 11 } 12 13 /** 14 * Accept the visitor. 15 */ 16 public Object jjtAccept(EcmascriptParserVisitor visitor, Object data) { 17 return visitor.visit(this, data); 18 } 19 }