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 b005563 commit b345494Copy full SHA for b345494
1 file changed
unified/ql/lib/codeql/unified/internal/FacadeAst.qll
@@ -8,6 +8,7 @@ module Unified {
8
private import Ast::Unified as G
9
import G
10
11
+ /** The base class for all AST nodes. */
12
class AstNode extends G::AstNode {
13
/** Holds if this AST node has a modifier with the given text. */
14
predicate hasModifier(string text) {
@@ -18,6 +19,7 @@ module Unified {
18
19
}
20
21
22
+ /** The base class for all patterns. */
23
class Pattern extends G::Pattern {
24
/** Gets the immediately-enclosing pattern in which this is a nested pattern. */
25
Pattern getEnclosingPattern() {
0 commit comments