codeql-development-mcp-server 2.24.2-rc3 → 2.24.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/ql/actions/tools/src/codeql-pack.yml +1 -1
- package/ql/cpp/tools/src/CallGraphFrom/CallGraphFrom.md +2 -3
- package/ql/cpp/tools/src/CallGraphTo/CallGraphTo.md +2 -3
- package/ql/cpp/tools/src/codeql-pack.yml +1 -1
- package/ql/csharp/tools/src/CallGraphFrom/CallGraphFrom.md +2 -3
- package/ql/csharp/tools/src/CallGraphTo/CallGraphTo.md +2 -3
- package/ql/csharp/tools/src/codeql-pack.yml +1 -1
- package/ql/go/tools/src/CallGraphFrom/CallGraphFrom.md +2 -3
- package/ql/go/tools/src/CallGraphTo/CallGraphTo.md +2 -3
- package/ql/go/tools/src/codeql-pack.yml +1 -1
- package/ql/java/tools/src/CallGraphFrom/CallGraphFrom.md +2 -3
- package/ql/java/tools/src/CallGraphTo/CallGraphTo.md +2 -3
- package/ql/java/tools/src/codeql-pack.yml +1 -1
- package/ql/javascript/tools/src/CallGraphFrom/CallGraphFrom.md +2 -3
- package/ql/javascript/tools/src/CallGraphTo/CallGraphTo.md +2 -3
- package/ql/javascript/tools/src/codeql-pack.yml +1 -1
- package/ql/python/tools/src/CallGraphFrom/CallGraphFrom.md +2 -3
- package/ql/python/tools/src/CallGraphTo/CallGraphTo.md +2 -3
- package/ql/python/tools/src/codeql-pack.yml +1 -1
- package/ql/ruby/tools/src/CallGraphFrom/CallGraphFrom.md +2 -3
- package/ql/ruby/tools/src/CallGraphTo/CallGraphTo.md +2 -3
- package/ql/ruby/tools/src/codeql-pack.yml +1 -1
- package/ql/swift/tools/src/CallGraphFrom/CallGraphFrom.md +2 -3
- package/ql/swift/tools/src/CallGraphTo/CallGraphTo.md +2 -3
- package/ql/swift/tools/src/codeql-pack.yml +1 -1
package/package.json
CHANGED
|
@@ -15,7 +15,6 @@ This query is primarily used for:
|
|
|
15
15
|
- Mapping outbound dependencies of a specific function
|
|
16
16
|
- Understanding what a function calls and in what order
|
|
17
17
|
- Analyzing call chains for refactoring or security review
|
|
18
|
-
- IDE integration for call hierarchy navigation
|
|
19
18
|
|
|
20
19
|
## Example
|
|
21
20
|
|
|
@@ -31,13 +30,13 @@ void sourceFunc() { // Source function for analysis
|
|
|
31
30
|
}
|
|
32
31
|
```
|
|
33
32
|
|
|
34
|
-
Running with `sourceFunction = "sourceFunc"` produces results showing each call site with the message pattern
|
|
33
|
+
Running with `sourceFunction = "sourceFunc"` produces results showing each call site with the message pattern ``Call from `sourceFunc` to `helper1``.
|
|
35
34
|
|
|
36
35
|
## Output Format
|
|
37
36
|
|
|
38
37
|
The query is a `@kind problem` query producing rows of:
|
|
39
38
|
|
|
40
|
-
-
|
|
39
|
+
- ``select call, "Call from `source` to `callee`"``
|
|
41
40
|
|
|
42
41
|
## References
|
|
43
42
|
|
|
@@ -15,7 +15,6 @@ This query is primarily used for:
|
|
|
15
15
|
- Finding all callers of a specific function
|
|
16
16
|
- Impact analysis before modifying a function signature
|
|
17
17
|
- Understanding usage patterns and entry points
|
|
18
|
-
- IDE integration for call hierarchy navigation
|
|
19
18
|
|
|
20
19
|
## Example
|
|
21
20
|
|
|
@@ -28,13 +27,13 @@ void caller1() { targetFunc(); }
|
|
|
28
27
|
void caller2() { targetFunc(); }
|
|
29
28
|
```
|
|
30
29
|
|
|
31
|
-
Running with `targetFunction = "targetFunc"` produces results showing each call site with the message pattern
|
|
30
|
+
Running with `targetFunction = "targetFunc"` produces results showing each call site with the message pattern ``Call to `targetFunc` from `caller1``.
|
|
32
31
|
|
|
33
32
|
## Output Format
|
|
34
33
|
|
|
35
34
|
The query is a `@kind problem` query producing rows of:
|
|
36
35
|
|
|
37
|
-
-
|
|
36
|
+
- ``select call, "Call to `target` from `caller`"``
|
|
38
37
|
|
|
39
38
|
## References
|
|
40
39
|
|
|
@@ -15,7 +15,6 @@ This query is primarily used for:
|
|
|
15
15
|
- Mapping outbound dependencies of a specific method
|
|
16
16
|
- Understanding what a method calls and in what order
|
|
17
17
|
- Analyzing call chains for refactoring or security review
|
|
18
|
-
- IDE integration for call hierarchy navigation
|
|
19
18
|
|
|
20
19
|
## Example
|
|
21
20
|
|
|
@@ -31,13 +30,13 @@ void SourceMethod() { // Source method for analysis
|
|
|
31
30
|
}
|
|
32
31
|
```
|
|
33
32
|
|
|
34
|
-
Running with `sourceFunction = "SourceMethod"` produces results showing each call site with the message pattern
|
|
33
|
+
Running with `sourceFunction = "SourceMethod"` produces results showing each call site with the message pattern ``Call from `SourceMethod` to `Helper1``.
|
|
35
34
|
|
|
36
35
|
## Output Format
|
|
37
36
|
|
|
38
37
|
The query is a `@kind problem` query producing rows of:
|
|
39
38
|
|
|
40
|
-
-
|
|
39
|
+
- ``select call, "Call from `source` to `callee`"``
|
|
41
40
|
|
|
42
41
|
## References
|
|
43
42
|
|
|
@@ -15,7 +15,6 @@ This query is primarily used for:
|
|
|
15
15
|
- Finding all callers of a specific method
|
|
16
16
|
- Impact analysis before modifying a method signature
|
|
17
17
|
- Understanding usage patterns and entry points
|
|
18
|
-
- IDE integration for call hierarchy navigation
|
|
19
18
|
|
|
20
19
|
## Example
|
|
21
20
|
|
|
@@ -28,13 +27,13 @@ void Caller1() { TargetMethod(); }
|
|
|
28
27
|
void Caller2() { TargetMethod(); }
|
|
29
28
|
```
|
|
30
29
|
|
|
31
|
-
Running with `targetFunction = "TargetMethod"` produces results showing each call site with the message pattern
|
|
30
|
+
Running with `targetFunction = "TargetMethod"` produces results showing each call site with the message pattern ``Call to `TargetMethod` from `Caller1``.
|
|
32
31
|
|
|
33
32
|
## Output Format
|
|
34
33
|
|
|
35
34
|
The query is a `@kind problem` query producing rows of:
|
|
36
35
|
|
|
37
|
-
-
|
|
36
|
+
- ``select call, "Call to `target` from `caller`"``
|
|
38
37
|
|
|
39
38
|
## References
|
|
40
39
|
|
|
@@ -15,7 +15,6 @@ This query is primarily used for:
|
|
|
15
15
|
- Mapping outbound dependencies of a specific function
|
|
16
16
|
- Understanding what a function calls and in what order
|
|
17
17
|
- Analyzing call chains for refactoring or security review
|
|
18
|
-
- IDE integration for call hierarchy navigation
|
|
19
18
|
|
|
20
19
|
## Example
|
|
21
20
|
|
|
@@ -31,13 +30,13 @@ func sourceFunc() { // Source function for analysis
|
|
|
31
30
|
}
|
|
32
31
|
```
|
|
33
32
|
|
|
34
|
-
Running with `sourceFunction = "sourceFunc"` produces results showing each call site with the message pattern
|
|
33
|
+
Running with `sourceFunction = "sourceFunc"` produces results showing each call site with the message pattern ``Call from `sourceFunc` to `helper1``.
|
|
35
34
|
|
|
36
35
|
## Output Format
|
|
37
36
|
|
|
38
37
|
The query is a `@kind problem` query producing rows of:
|
|
39
38
|
|
|
40
|
-
-
|
|
39
|
+
- ``select call, "Call from `source` to `callee`"``
|
|
41
40
|
|
|
42
41
|
## References
|
|
43
42
|
|
|
@@ -15,7 +15,6 @@ This query is primarily used for:
|
|
|
15
15
|
- Finding all callers of a specific function
|
|
16
16
|
- Impact analysis before modifying a function signature
|
|
17
17
|
- Understanding usage patterns and entry points
|
|
18
|
-
- IDE integration for call hierarchy navigation
|
|
19
18
|
|
|
20
19
|
## Example
|
|
21
20
|
|
|
@@ -28,13 +27,13 @@ func caller1() { targetFunc() }
|
|
|
28
27
|
func caller2() { targetFunc() }
|
|
29
28
|
```
|
|
30
29
|
|
|
31
|
-
Running with `targetFunction = "targetFunc"` produces results showing each call site with the message pattern
|
|
30
|
+
Running with `targetFunction = "targetFunc"` produces results showing each call site with the message pattern ``Call to `targetFunc` from `caller1``.
|
|
32
31
|
|
|
33
32
|
## Output Format
|
|
34
33
|
|
|
35
34
|
The query is a `@kind problem` query producing rows of:
|
|
36
35
|
|
|
37
|
-
-
|
|
36
|
+
- ``select call, "Call to `target` from `caller`"``
|
|
38
37
|
|
|
39
38
|
## References
|
|
40
39
|
|
|
@@ -15,7 +15,6 @@ This query is primarily used for:
|
|
|
15
15
|
- Mapping outbound dependencies of a specific method
|
|
16
16
|
- Understanding what a method calls and in what order
|
|
17
17
|
- Analyzing call chains for refactoring or security review
|
|
18
|
-
- IDE integration for call hierarchy navigation
|
|
19
18
|
|
|
20
19
|
## Example
|
|
21
20
|
|
|
@@ -31,13 +30,13 @@ void sourceMethod() { // Source method for analysis
|
|
|
31
30
|
}
|
|
32
31
|
```
|
|
33
32
|
|
|
34
|
-
Running with `sourceFunction = "sourceMethod"` produces results showing each call site with the message pattern
|
|
33
|
+
Running with `sourceFunction = "sourceMethod"` produces results showing each call site with the message pattern ``Call from `sourceMethod` to `helper1``.
|
|
35
34
|
|
|
36
35
|
## Output Format
|
|
37
36
|
|
|
38
37
|
The query is a `@kind problem` query producing rows of:
|
|
39
38
|
|
|
40
|
-
-
|
|
39
|
+
- ``select call, "Call from `source` to `callee`"``
|
|
41
40
|
|
|
42
41
|
## References
|
|
43
42
|
|
|
@@ -15,7 +15,6 @@ This query is primarily used for:
|
|
|
15
15
|
- Finding all callers of a specific method
|
|
16
16
|
- Impact analysis before modifying a method signature
|
|
17
17
|
- Understanding usage patterns and entry points
|
|
18
|
-
- IDE integration for call hierarchy navigation
|
|
19
18
|
|
|
20
19
|
## Example
|
|
21
20
|
|
|
@@ -28,13 +27,13 @@ void caller1() { targetMethod(); }
|
|
|
28
27
|
void caller2() { targetMethod(); }
|
|
29
28
|
```
|
|
30
29
|
|
|
31
|
-
Running with `targetFunction = "targetMethod"` produces results showing each call site with the message pattern
|
|
30
|
+
Running with `targetFunction = "targetMethod"` produces results showing each call site with the message pattern ``Call to `targetMethod` from `caller1``.
|
|
32
31
|
|
|
33
32
|
## Output Format
|
|
34
33
|
|
|
35
34
|
The query is a `@kind problem` query producing rows of:
|
|
36
35
|
|
|
37
|
-
-
|
|
36
|
+
- ``select call, "Call to `target` from `caller`"``
|
|
38
37
|
|
|
39
38
|
## References
|
|
40
39
|
|
|
@@ -15,7 +15,6 @@ This query is primarily used for:
|
|
|
15
15
|
- Mapping outbound dependencies of a specific function
|
|
16
16
|
- Understanding what a function calls and in what order
|
|
17
17
|
- Analyzing call chains for refactoring or security review
|
|
18
|
-
- IDE integration for call hierarchy navigation
|
|
19
18
|
|
|
20
19
|
## Example
|
|
21
20
|
|
|
@@ -34,13 +33,13 @@ function sourceFunc() {
|
|
|
34
33
|
}
|
|
35
34
|
```
|
|
36
35
|
|
|
37
|
-
Running with `sourceFunction = "sourceFunc"` produces results showing each call site with the message pattern
|
|
36
|
+
Running with `sourceFunction = "sourceFunc"` produces results showing each call site with the message pattern ``Call from `sourceFunc` to `helper1``.
|
|
38
37
|
|
|
39
38
|
## Output Format
|
|
40
39
|
|
|
41
40
|
The query is a `@kind problem` query producing rows of:
|
|
42
41
|
|
|
43
|
-
-
|
|
42
|
+
- ``select call, "Call from `source` to `callee`"``
|
|
44
43
|
|
|
45
44
|
## References
|
|
46
45
|
|
|
@@ -15,7 +15,6 @@ This query is primarily used for:
|
|
|
15
15
|
- Finding all callers of a specific function
|
|
16
16
|
- Impact analysis before modifying a function signature
|
|
17
17
|
- Understanding usage patterns and entry points
|
|
18
|
-
- IDE integration for call hierarchy navigation
|
|
19
18
|
|
|
20
19
|
## Example
|
|
21
20
|
|
|
@@ -32,13 +31,13 @@ function caller2() {
|
|
|
32
31
|
}
|
|
33
32
|
```
|
|
34
33
|
|
|
35
|
-
Running with `targetFunction = "targetFunc"` produces results showing each call site with the message pattern
|
|
34
|
+
Running with `targetFunction = "targetFunc"` produces results showing each call site with the message pattern ``Call to `targetFunc` from `caller1``.
|
|
36
35
|
|
|
37
36
|
## Output Format
|
|
38
37
|
|
|
39
38
|
The query is a `@kind problem` query producing rows of:
|
|
40
39
|
|
|
41
|
-
-
|
|
40
|
+
- ``select call, "Call to `target` from `caller`"``
|
|
42
41
|
|
|
43
42
|
## References
|
|
44
43
|
|
|
@@ -15,7 +15,6 @@ This query is primarily used for:
|
|
|
15
15
|
- Mapping outbound dependencies of a specific function
|
|
16
16
|
- Understanding what a function calls and in what order
|
|
17
17
|
- Analyzing call chains for refactoring or security review
|
|
18
|
-
- IDE integration for call hierarchy navigation
|
|
19
18
|
|
|
20
19
|
## Example
|
|
21
20
|
|
|
@@ -33,13 +32,13 @@ def source_func(): # Source function for analysis
|
|
|
33
32
|
helper2()
|
|
34
33
|
```
|
|
35
34
|
|
|
36
|
-
Running with `sourceFunction = "source_func"` produces results showing each call site with the message pattern
|
|
35
|
+
Running with `sourceFunction = "source_func"` produces results showing each call site with the message pattern ``Call from `source_func` to `helper1``.
|
|
37
36
|
|
|
38
37
|
## Output Format
|
|
39
38
|
|
|
40
39
|
The query is a `@kind problem` query producing rows of:
|
|
41
40
|
|
|
42
|
-
-
|
|
41
|
+
- ``select call, "Call from `source` to `callee`"``
|
|
43
42
|
|
|
44
43
|
## References
|
|
45
44
|
|
|
@@ -15,7 +15,6 @@ This query is primarily used for:
|
|
|
15
15
|
- Finding all callers of a specific function
|
|
16
16
|
- Impact analysis before modifying a function signature
|
|
17
17
|
- Understanding usage patterns and entry points
|
|
18
|
-
- IDE integration for call hierarchy navigation
|
|
19
18
|
|
|
20
19
|
## Example
|
|
21
20
|
|
|
@@ -32,13 +31,13 @@ def caller2():
|
|
|
32
31
|
target_func()
|
|
33
32
|
```
|
|
34
33
|
|
|
35
|
-
Running with `targetFunction = "target_func"` produces results showing each call site with the message pattern
|
|
34
|
+
Running with `targetFunction = "target_func"` produces results showing each call site with the message pattern ``Call to `target_func` from `caller1``.
|
|
36
35
|
|
|
37
36
|
## Output Format
|
|
38
37
|
|
|
39
38
|
The query is a `@kind problem` query producing rows of:
|
|
40
39
|
|
|
41
|
-
-
|
|
40
|
+
- ``select call, "Call to `target` from `caller`"``
|
|
42
41
|
|
|
43
42
|
## References
|
|
44
43
|
|
|
@@ -15,7 +15,6 @@ This query is primarily used for:
|
|
|
15
15
|
- Mapping outbound dependencies of a specific method
|
|
16
16
|
- Understanding what a method calls and in what order
|
|
17
17
|
- Analyzing call chains for refactoring or security review
|
|
18
|
-
- IDE integration for call hierarchy navigation
|
|
19
18
|
|
|
20
19
|
## Example
|
|
21
20
|
|
|
@@ -35,13 +34,13 @@ def source_func # Source method for analysis
|
|
|
35
34
|
end
|
|
36
35
|
```
|
|
37
36
|
|
|
38
|
-
Running with `sourceFunction = "source_func"` produces results showing each call site with the message pattern
|
|
37
|
+
Running with `sourceFunction = "source_func"` produces results showing each call site with the message pattern ``Call from `source_func` to `helper1``.
|
|
39
38
|
|
|
40
39
|
## Output Format
|
|
41
40
|
|
|
42
41
|
The query is a `@kind problem` query producing rows of:
|
|
43
42
|
|
|
44
|
-
-
|
|
43
|
+
- ``select call, "Call from `source` to `callee`"``
|
|
45
44
|
|
|
46
45
|
## References
|
|
47
46
|
|
|
@@ -15,7 +15,6 @@ This query is primarily used for:
|
|
|
15
15
|
- Finding all callers of a specific method
|
|
16
16
|
- Impact analysis before modifying a method signature
|
|
17
17
|
- Understanding usage patterns and entry points
|
|
18
|
-
- IDE integration for call hierarchy navigation
|
|
19
18
|
|
|
20
19
|
## Example
|
|
21
20
|
|
|
@@ -34,13 +33,13 @@ def caller2
|
|
|
34
33
|
end
|
|
35
34
|
```
|
|
36
35
|
|
|
37
|
-
Running with `targetFunction = "target_func"` produces results showing each call site with the message pattern
|
|
36
|
+
Running with `targetFunction = "target_func"` produces results showing each call site with the message pattern ``Call to `target_func` from `caller1``.
|
|
38
37
|
|
|
39
38
|
## Output Format
|
|
40
39
|
|
|
41
40
|
The query is a `@kind problem` query producing rows of:
|
|
42
41
|
|
|
43
|
-
-
|
|
42
|
+
- ``select call, "Call to `target` from `caller`"``
|
|
44
43
|
|
|
45
44
|
## References
|
|
46
45
|
|
|
@@ -15,7 +15,6 @@ This query is primarily used for:
|
|
|
15
15
|
- Mapping outbound dependencies of a specific function
|
|
16
16
|
- Understanding what a function calls and in what order
|
|
17
17
|
- Analyzing call chains for refactoring or security review
|
|
18
|
-
- IDE integration for call hierarchy navigation
|
|
19
18
|
|
|
20
19
|
## Example
|
|
21
20
|
|
|
@@ -31,13 +30,13 @@ func sourceFunc() { // Source function for analysis
|
|
|
31
30
|
}
|
|
32
31
|
```
|
|
33
32
|
|
|
34
|
-
Running with `sourceFunction = "sourceFunc"` produces results showing each call site with the message pattern
|
|
33
|
+
Running with `sourceFunction = "sourceFunc"` produces results showing each call site with the message pattern ``Call from `sourceFunc` to `helper1``.
|
|
35
34
|
|
|
36
35
|
## Output Format
|
|
37
36
|
|
|
38
37
|
The query is a `@kind problem` query producing rows of:
|
|
39
38
|
|
|
40
|
-
-
|
|
39
|
+
- ``select call, "Call from `source` to `callee`"``
|
|
41
40
|
|
|
42
41
|
## References
|
|
43
42
|
|
|
@@ -15,7 +15,6 @@ This query is primarily used for:
|
|
|
15
15
|
- Finding all callers of a specific function
|
|
16
16
|
- Impact analysis before modifying a function signature
|
|
17
17
|
- Understanding usage patterns and entry points
|
|
18
|
-
- IDE integration for call hierarchy navigation
|
|
19
18
|
|
|
20
19
|
## Example
|
|
21
20
|
|
|
@@ -28,13 +27,13 @@ func caller1() { targetFunc() }
|
|
|
28
27
|
func caller2() { targetFunc() }
|
|
29
28
|
```
|
|
30
29
|
|
|
31
|
-
Running with `targetFunction = "targetFunc"` produces results showing each call site with the message pattern
|
|
30
|
+
Running with `targetFunction = "targetFunc"` produces results showing each call site with the message pattern ``Call to `targetFunc` from `caller1``.
|
|
32
31
|
|
|
33
32
|
## Output Format
|
|
34
33
|
|
|
35
34
|
The query is a `@kind problem` query producing rows of:
|
|
36
35
|
|
|
37
|
-
-
|
|
36
|
+
- ``select call, "Call to `target` from `caller`"``
|
|
38
37
|
|
|
39
38
|
## References
|
|
40
39
|
|