Skip to content

Commit 5c16b0f

Browse files
committed
unified: regenerate files
1 parent 7854a53 commit 5c16b0f

2 files changed

Lines changed: 99 additions & 76 deletions

File tree

unified/ql/lib/codeql/unified/Ast.qll

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2167,6 +2167,18 @@ module Swift {
21672167
final override string getAPrimaryQlClass() { result = "RealLiteral" }
21682168
}
21692169

2170+
/** A class representing `referenceable_operator` nodes. */
2171+
class ReferenceableOperator extends @swift_referenceable_operator, AstNode {
2172+
/** Gets the name of the primary QL class for this element. */
2173+
final override string getAPrimaryQlClass() { result = "ReferenceableOperator" }
2174+
2175+
/** Gets the child of this node. */
2176+
final AstNode getChild() { swift_referenceable_operator_child(this, result) }
2177+
2178+
/** Gets a field or child node of this node. */
2179+
final override AstNode getAFieldOrChild() { swift_referenceable_operator_child(this, result) }
2180+
}
2181+
21702182
/** A class representing `regex_literal` tokens. */
21712183
class RegexLiteral extends @swift_token_regex_literal, Token {
21722184
/** Gets the name of the primary QL class for this element. */

0 commit comments

Comments
 (0)