Skip to content

Commit ddf06f8

Browse files
committed
Add change notes and qldoc for moved files
1 parent a3f4d1b commit ddf06f8

File tree

7 files changed

+27
-0
lines changed

7 files changed

+27
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
category: breaking
3+
---
4+
* Contextual queries and the query libraries they depend on have been moved to the `codeql/cpp-all` package.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
category: breaking
3+
---
4+
* Contextual queries and the query libraries they depend on have been moved to the `codeql/csharp-all` package.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
category: breaking
3+
---
4+
* Contextual queries and the query libraries they depend on have been moved to the `codeql/java-all` package.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
category: breaking
3+
---
4+
* Contextual queries and the query libraries they depend on have been moved to the `codeql/javascript-all` package.

python/ql/lib/analysis/DefinitionTracking.qll

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,13 @@ class Definition extends TLocalDefinition {
1414
/** Gets a textual representation of this element. */
1515
string toString() { result = "Definition " + this.getAstNode().getLocation().toString() }
1616

17+
/** Gets the AST Node associated with this element */
1718
AstNode getAstNode() { this = TLocalDefinition(result) }
1819

20+
/** Gets the Module associated with this element */
1921
Module getModule() { result = this.getAstNode().getScope().getEnclosingModule() }
2022

23+
/** Gets the source location of the AST Node associated with this element */
2124
Location getLocation() { result = this.getAstNode().getLocation() }
2225
}
2326

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
category: breaking
3+
---
4+
* Contextual queries and the query libraries they depend on have been moved to the `codeql/python-all` package.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
category: breaking
3+
---
4+
* Contextual queries and the query libraries they depend on have been moved to the `codeql/ruby-all` package.

0 commit comments

Comments
 (0)