ASTParenthesizedExpression.java
01 /**
02  * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
03  */
04 package net.sourceforge.pmd.lang.ecmascript.ast;
05 
06 import org.mozilla.javascript.ast.ParenthesizedExpression;
07 
08 public class ASTParenthesizedExpression extends AbstractEcmascriptNode<ParenthesizedExpression> {
09     public ASTParenthesizedExpression(ParenthesizedExpression parenthesizedExpression) {
10   super(parenthesizedExpression);
11     }
12 
13     /**
14      * Accept the visitor.
15      */
16     public Object jjtAccept(EcmascriptParserVisitor visitor, Object data) {
17   return visitor.visit(this, data);
18     }
19 }