Skip to content

Commit e9b4e57

Browse files
authored
Merge pull request #6775 from RasmusWL/fix-hasLocationInfo-url
Approved by aschackmull, erik-krogh, hvitved, jbj, tausbn
2 parents 089bb33 + ba990f7 commit e9b4e57

File tree

90 files changed

+129
-129
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+129
-129
lines changed

cpp/ql/lib/semmle/code/cpp/File.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class Container extends Locatable, @container {
3838
* DEPRECATED: Use `getLocation` instead.
3939
* Gets a URL representing the location of this container.
4040
*
41-
* For more information see [Providing URLs](https://help.semmle.com/QL/learn-ql/ql/locations.html#providing-urls).
41+
* For more information see [Providing URLs](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/#providing-urls).
4242
*/
4343
deprecated string getURL() { none() } // overridden by subclasses
4444

cpp/ql/lib/semmle/code/cpp/Location.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class Location extends @location {
6161
* The location spans column `startcolumn` of line `startline` to
6262
* column `endcolumn` of line `endline` in file `filepath`.
6363
* For more information, see
64-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
64+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
6565
*/
6666
predicate hasLocationInfo(
6767
string filepath, int startline, int startcolumn, int endline, int endcolumn

cpp/ql/lib/semmle/code/cpp/XML.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class XMLLocatable extends @xmllocatable, TXMLLocatable {
2424
* The location spans column `startcolumn` of line `startline` to
2525
* column `endcolumn` of line `endline` in file `filepath`.
2626
* For more information, see
27-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
27+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
2828
*/
2929
predicate hasLocationInfo(
3030
string filepath, int startline, int startcolumn, int endline, int endcolumn

cpp/ql/lib/semmle/code/cpp/controlflow/BasicBlocks.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ class BasicBlock extends ControlFlowNodeBase {
194194
* The location spans column `startcolumn` of line `startline` to
195195
* column `endcolumn` of line `endline` in file `filepath`.
196196
* For more information, see
197-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
197+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
198198
*
199199
* Yields no result if this basic block spans multiple source files.
200200
*/

cpp/ql/lib/semmle/code/cpp/dataflow/internal/DataFlowImpl.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3248,7 +3248,7 @@ class PathNode extends TPathNode {
32483248
* The location spans column `startcolumn` of line `startline` to
32493249
* column `endcolumn` of line `endline` in file `filepath`.
32503250
* For more information, see
3251-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
3251+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
32523252
*/
32533253
predicate hasLocationInfo(
32543254
string filepath, int startline, int startcolumn, int endline, int endcolumn
@@ -4033,7 +4033,7 @@ private module FlowExploration {
40334033
* The location spans column `startcolumn` of line `startline` to
40344034
* column `endcolumn` of line `endline` in file `filepath`.
40354035
* For more information, see
4036-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
4036+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
40374037
*/
40384038
predicate hasLocationInfo(
40394039
string filepath, int startline, int startcolumn, int endline, int endcolumn

cpp/ql/lib/semmle/code/cpp/dataflow/internal/DataFlowImpl2.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3248,7 +3248,7 @@ class PathNode extends TPathNode {
32483248
* The location spans column `startcolumn` of line `startline` to
32493249
* column `endcolumn` of line `endline` in file `filepath`.
32503250
* For more information, see
3251-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
3251+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
32523252
*/
32533253
predicate hasLocationInfo(
32543254
string filepath, int startline, int startcolumn, int endline, int endcolumn
@@ -4033,7 +4033,7 @@ private module FlowExploration {
40334033
* The location spans column `startcolumn` of line `startline` to
40344034
* column `endcolumn` of line `endline` in file `filepath`.
40354035
* For more information, see
4036-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
4036+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
40374037
*/
40384038
predicate hasLocationInfo(
40394039
string filepath, int startline, int startcolumn, int endline, int endcolumn

cpp/ql/lib/semmle/code/cpp/dataflow/internal/DataFlowImpl3.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3248,7 +3248,7 @@ class PathNode extends TPathNode {
32483248
* The location spans column `startcolumn` of line `startline` to
32493249
* column `endcolumn` of line `endline` in file `filepath`.
32503250
* For more information, see
3251-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
3251+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
32523252
*/
32533253
predicate hasLocationInfo(
32543254
string filepath, int startline, int startcolumn, int endline, int endcolumn
@@ -4033,7 +4033,7 @@ private module FlowExploration {
40334033
* The location spans column `startcolumn` of line `startline` to
40344034
* column `endcolumn` of line `endline` in file `filepath`.
40354035
* For more information, see
4036-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
4036+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
40374037
*/
40384038
predicate hasLocationInfo(
40394039
string filepath, int startline, int startcolumn, int endline, int endcolumn

cpp/ql/lib/semmle/code/cpp/dataflow/internal/DataFlowImpl4.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3248,7 +3248,7 @@ class PathNode extends TPathNode {
32483248
* The location spans column `startcolumn` of line `startline` to
32493249
* column `endcolumn` of line `endline` in file `filepath`.
32503250
* For more information, see
3251-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
3251+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
32523252
*/
32533253
predicate hasLocationInfo(
32543254
string filepath, int startline, int startcolumn, int endline, int endcolumn
@@ -4033,7 +4033,7 @@ private module FlowExploration {
40334033
* The location spans column `startcolumn` of line `startline` to
40344034
* column `endcolumn` of line `endline` in file `filepath`.
40354035
* For more information, see
4036-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
4036+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
40374037
*/
40384038
predicate hasLocationInfo(
40394039
string filepath, int startline, int startcolumn, int endline, int endcolumn

cpp/ql/lib/semmle/code/cpp/dataflow/internal/DataFlowImplLocal.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3248,7 +3248,7 @@ class PathNode extends TPathNode {
32483248
* The location spans column `startcolumn` of line `startline` to
32493249
* column `endcolumn` of line `endline` in file `filepath`.
32503250
* For more information, see
3251-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
3251+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
32523252
*/
32533253
predicate hasLocationInfo(
32543254
string filepath, int startline, int startcolumn, int endline, int endcolumn
@@ -4033,7 +4033,7 @@ private module FlowExploration {
40334033
* The location spans column `startcolumn` of line `startline` to
40344034
* column `endcolumn` of line `endline` in file `filepath`.
40354035
* For more information, see
4036-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
4036+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
40374037
*/
40384038
predicate hasLocationInfo(
40394039
string filepath, int startline, int startcolumn, int endline, int endcolumn

cpp/ql/lib/semmle/code/cpp/dataflow/internal/DataFlowUtil.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ class Node extends TNode {
101101
* The location spans column `startcolumn` of line `startline` to
102102
* column `endcolumn` of line `endline` in file `filepath`.
103103
* For more information, see
104-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
104+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
105105
*/
106106
predicate hasLocationInfo(
107107
string filepath, int startline, int startcolumn, int endline, int endcolumn

0 commit comments

Comments
 (0)