ASTPropertyGet.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.PropertyGet;
07 
08 public class ASTPropertyGet extends AbstractInfixEcmascriptNode<PropertyGet> {
09     public ASTPropertyGet(PropertyGet propertyGet) {
10   super(propertyGet, false);
11   super.setImage(".");
12     }
13 
14     /**
15      * Accept the visitor.
16      */
17     public Object jjtAccept(EcmascriptParserVisitor visitor, Object data) {
18   return visitor.visit(this, data);
19     }
20 }