Skip to content

Commit 075cbfd

Browse files
committed
Split information extensions and predicates into 2 articles
1 parent 67ff5ae commit 075cbfd

File tree

4 files changed

+318
-274
lines changed

4 files changed

+318
-274
lines changed

docs/codeql/codeql-language-guides/codeql-for-java.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,21 @@ Experiment and learn how to write effective and efficient queries for CodeQL dat
1818
basic-query-for-java-code
1919
codeql-library-for-java
2020
analyzing-data-flow-in-java
21-
using-data-extensions-to-model-dependencies
2221
types-in-java
2322
overflow-prone-comparisons-in-java
2423
navigating-the-call-graph
2524
annotations-in-java
2625
javadoc
2726
working-with-source-locations
2827
abstract-syntax-tree-classes-for-working-with-java-programs
28+
using-data-extensions-to-model-java-dependencies
2929

3030
- :doc:`Basic query for Java code <basic-query-for-java-code>`: Learn to write and run a simple CodeQL query.
3131

3232
- :doc:`CodeQL library for Java <codeql-library-for-java>`: When analyzing Java code, you can use the large collection of classes in the CodeQL library for Java.
3333

3434
- :doc:`Analyzing data flow in Java <analyzing-data-flow-in-java>`: You can use CodeQL to track the flow of data through a Java program to its use.
3535

36-
- :doc:`Using data extensions to model your Java/Kotlin dependencies`: You can model frameworks and libraries that your code base depends on using data extensions and publish them as CodeQL model packs.
37-
3836
- :doc:`Java types <types-in-java>`: You can use CodeQL to find out information about data types used in Java code. This allows you to write queries to identify specific type-related issues.
3937

4038
- :doc:`Overflow-prone comparisons in Java <overflow-prone-comparisons-in-java>`: You can use CodeQL to check for comparisons in Java code where one side of the comparison is prone to overflow.
@@ -48,3 +46,5 @@ Experiment and learn how to write effective and efficient queries for CodeQL dat
4846
- :doc:`Working with source locations <working-with-source-locations>`: You can use the location of entities within Java code to look for potential errors. Locations allow you to deduce the presence, or absence, of white space which, in some cases, may indicate a problem.
4947

5048
- :doc:`Abstract syntax tree classes for working with Java programs <abstract-syntax-tree-classes-for-working-with-java-programs>`: CodeQL has a large selection of classes for representing the abstract syntax tree of Java programs.
49+
50+
- :doc:`Data extensions to model your Java/Kotlin dependencies`: You can model frameworks and libraries that your code base depends on using data extensions and publish them as CodeQL model packs.

docs/codeql/codeql-language-guides/codeql-for-javascript.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _codeql-for-javascript:
22

3-
CodeQL for JavaScript
4-
=====================
3+
CodeQL for JavaScript and TypeScript
4+
====================================
55

66
Experiment and learn how to write effective and efficient queries for CodeQL databases generated from JavaScript codebases.
77

0 commit comments

Comments
 (0)