Files
codeql/java/ql/lib/semmle/code/java/PrintAst.ql
Andrew Eisenberg 8e750f18ad Packaging: Java refactoring
Split java pack into `codeql/java-all` and `codeql/java-queries`.
2021-08-19 14:09:35 -07:00

21 lines
465 B
Plaintext

/**
* @name Print AST
* @description Outputs a representation of the Abstract Syntax Tree.
* @id java/print-ast
* @kind graph
*/
import java
import PrintAst
/**
* Temporarily tweak this class or make a copy to control which functions are
* printed.
*/
class PrintAstConfigurationOverride extends PrintAstConfiguration {
/**
* TWEAK THIS PREDICATE AS NEEDED.
*/
override predicate shouldPrint(Element e, Location l) { super.shouldPrint(e, l) }
}