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.PropertyGet;
7
8 public class ASTPropertyGet extends AbstractInfixEcmascriptNode<PropertyGet> {
9 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 }