File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
shared/dataflow/codeql/dataflow/internal Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -7,16 +7,22 @@ module MakeImplCommon<InputSig Lang> {
7
7
import Cached
8
8
9
9
module DataFlowImplCommonPublic {
10
- /** Provides `FlowState = string`. */
11
- module FlowStateString {
10
+ /**
11
+ * DEPRECATED: Generally, a custom `FlowState` type should be used instead,
12
+ * but `string` can of course still be used without referring to this
13
+ * module.
14
+ *
15
+ * Provides `FlowState = string`.
16
+ */
17
+ deprecated module FlowStateString {
12
18
/** A state value to track during data flow. */
13
- class FlowState = string ;
19
+ deprecated class FlowState = string ;
14
20
15
21
/**
16
22
* The default state, which is used when the state is unspecified for a source
17
23
* or a sink.
18
24
*/
19
- class FlowStateEmpty extends FlowState {
25
+ deprecated class FlowStateEmpty extends FlowState {
20
26
FlowStateEmpty ( ) { this = "" }
21
27
}
22
28
}
You can’t perform that action at this time.
0 commit comments