We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a66229e commit 803e079Copy full SHA for 803e079
ql/ql/src/codeql_ql/ast/internal/AstNodes.qll
@@ -233,7 +233,7 @@ module AstConsistency {
233
not exists(node.getParent()) and
234
not node.getLocation().getStartColumn() = 1 and // startcolumn = 1 <=> top level in file <=> fine to have no parent
235
exists(node.toString()) and // <- there are a few parse errors in "global-data-flow-java-1.ql", this way we filter them out.
236
- not node instanceof YAML::YAMLNode and // parents for YAML does't work
+ not node instanceof YAML::YAMLNode and // parents for YAML doesn't work
237
not (node instanceof QLDoc and node.getLocation().getFile().getExtension() = "dbscheme") // qldoc in dbschemes are not hooked up
238
}
239
0 commit comments