/** * BSD-style license; for more info see http://pmd.sourceforge.net/license.html */ package net.sourceforge.pmd.lang.apex.ast; import apex.jorje.semantic.ast.expression.NewMapLiteralExpression; public class ASTNewMapLiteralExpression extends AbstractApexNode<NewMapLiteralExpression> { public ASTNewMapLiteralExpression(NewMapLiteralExpression newMapLiteralExpression) { super(newMapLiteralExpression); } public Object jjtAccept(ApexParserVisitor visitor, Object data) { return visitor.visit(this, data); } }