Skip to content

Commit 1031df7

Browse files
committed
Data flow: Experiment
1 parent 96b6dde commit 1031df7

File tree

2 files changed

+383
-25
lines changed

2 files changed

+383
-25
lines changed

shared/dataflow/codeql/dataflow/DataFlow.qll

+3-2
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,7 @@ signature module InputSig<LocationSig Location> {
276276
*/
277277
predicate isUnreachableInCall(NodeRegion nr, DataFlowCall call);
278278

279+
/** Gets the access path limit. A maximum limit of 5 is allowed. */
279280
default int accessPathLimit() { result = 5 }
280281

281282
/**
@@ -412,7 +413,7 @@ module Configs<LocationSig Location, InputSig<Location> Lang> {
412413
*/
413414
default int fieldFlowBranchLimit() { result = 2 }
414415

415-
/** Gets the access path limit. */
416+
/** Gets the access path limit. A maximum limit of 5 is allowed. */
416417
default int accessPathLimit() { result = Lang::accessPathLimit() }
417418

418419
/**
@@ -534,7 +535,7 @@ module Configs<LocationSig Location, InputSig<Location> Lang> {
534535
*/
535536
default int fieldFlowBranchLimit() { result = 2 }
536537

537-
/** Gets the access path limit. */
538+
/** Gets the access path limit. A maximum limit of 5 is allowed. */
538539
default int accessPathLimit() { result = Lang::accessPathLimit() }
539540

540541
/**

0 commit comments

Comments
 (0)