We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30f8894 commit af47cbaCopy full SHA for af47cba
2 files changed
ql/ql/src/codeql_ql/ast/Ast.qll
@@ -699,7 +699,7 @@ class Module extends TModule, ModuleDeclaration {
699
}
700
701
/**
702
- * Something that can be member of a module.
+ * A member of a module.
703
*/
704
class ModuleMember extends TModuleMember, AstNode {
705
/** Holds if this member is declared as `private`. */
ql/ql/src/ide-contextual-queries/printAst.ql
@@ -17,9 +17,7 @@ import codeql.IDEContextual
17
18
external string selectedSourceFile();
19
20
-/**
21
- * Overrides the configuration to print only nodes in the selected source file.
22
- */
+// Overrides the configuration to print only nodes in the selected source file.
23
class Cfg extends PrintAstConfiguration {
24
override predicate shouldPrintNode(AstNode n) {
25
super.shouldPrintNode(n) and
0 commit comments