1
2
3
4 package net.sourceforge.pmd.lang.ecmascript.ast;
5
6 import org.mozilla.javascript.ast.RegExpLiteral;
7
8 public class ASTRegExpLiteral extends AbstractEcmascriptNode<RegExpLiteral> {
9 public ASTRegExpLiteral(RegExpLiteral regExpLiteral) {
10 super(regExpLiteral);
11 super.setImage(regExpLiteral.getValue());
12 }
13
14
15
16
17 public Object jjtAccept(EcmascriptParserVisitor visitor, Object data) {
18 return visitor.visit(this, data);
19 }
20
21 public String getFlags() {
22 return node.getFlags();
23 }
24 }