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.Label; 7 8 public class ASTLabel extends AbstractEcmascriptNode<Label> { 9 public ASTLabel(Label label) { 10 super(label); 11 super.setImage(label.getName()); 12 } 13 14 /** 15 * Accept the visitor. 16 */ 17 public Object jjtAccept(EcmascriptParserVisitor visitor, Object data) { 18 return visitor.visit(this, data); 19 } 20 }