File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
docs/codeql/codeql-language-guides Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -177,6 +177,7 @@ You use the global data flow library by implementing the signature ``DataFlow::C
177177
178178.. code-block :: ql
179179
180+ import java
180181 import semmle.code.java.dataflow.DataFlow
181182
182183 module MyFlowConfiguration implements DataFlow::ConfigSig {
@@ -213,6 +214,7 @@ Global taint tracking is to global data flow as local taint tracking is to local
213214
214215.. code-block :: ql
215216
217+ import java
216218 import semmle.code.java.dataflow.TaintTracking
217219
218220 module MyFlowConfiguration implements DataFlow::ConfigSig {
@@ -271,6 +273,7 @@ Exercise 1
271273
272274.. code-block :: ql
273275
276+ import java
274277 import semmle.code.java.dataflow.DataFlow
275278
276279 from Constructor url, Call call, StringLiteral src
@@ -285,6 +288,7 @@ Exercise 2
285288
286289.. code-block :: ql
287290
291+ import java
288292 import semmle.code.java.dataflow.DataFlow
289293
290294 module LiteralToURLConfig implements DataFlow::ConfigSig {
@@ -327,6 +331,7 @@ Exercise 4
327331
328332.. code-block :: ql
329333
334+ import java
330335 import semmle.code.java.dataflow.DataFlow
331336
332337 class GetenvSource extends DataFlow::ExprNode {
You can’t perform that action at this time.
0 commit comments