diff --git a/pmd-plsql/etc/grammar/PldocAST.jjt b/pmd-plsql/etc/grammar/PldocAST.jjt index cfe52e8330..9a5e21e504 100644 --- a/pmd-plsql/etc/grammar/PldocAST.jjt +++ b/pmd-plsql/etc/grammar/PldocAST.jjt @@ -164,6 +164,7 @@ import java.util.ArrayList; import net.sourceforge.pmd.lang.ast.Node; import net.sourceforge.pmd.lang.ast.SimpleCharStream; import net.sourceforge.pmd.lang.ast.TokenMgrError; +import net.sourceforge.pmd.lang.plsql.ast.internal.ParsingExclusion; public class PLSQLParser { @@ -249,7 +250,7 @@ PARSER_END(PLSQLParser) TOKEN_MGR_DECLS : { - public List exclusions = new ArrayList(); + List exclusions = new ArrayList(); } @@ -292,19 +293,19 @@ ASTInput Input(String sourcecode) : ("/")* )* - { jjtThis.setSourcecode(sourcecode); + { + jjtThis.setSourcecode(sourcecode); List exclusions = token_source.exclusions; if (exclusions != null) { // System.err.println("ParsingExclusions:"); - for (int i=0; i