File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
javascript/ql/lib/semmle/javascript/dataflow Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -166,6 +166,26 @@ abstract class Configuration extends string {
166
166
)
167
167
}
168
168
169
+ /**
170
+ * Holds if flow into `node` is prohibited.
171
+ */
172
+ predicate isBarrierIn ( DataFlow:: Node node ) { none ( ) }
173
+
174
+ /**
175
+ * Holds if flow out `node` is prohibited.
176
+ */
177
+ predicate isBarrierOut ( DataFlow:: Node node ) { none ( ) }
178
+
179
+ /**
180
+ * Holds if flow into `node` is prohibited for the flow label `lbl`.
181
+ */
182
+ predicate isBarrierIn ( DataFlow:: Node node , FlowLabel lbl ) { none ( ) }
183
+
184
+ /**
185
+ * Holds if flow out `node` is prohibited for the flow label `lbl`.
186
+ */
187
+ predicate isBarrierOut ( DataFlow:: Node node , FlowLabel lbl ) { none ( ) }
188
+
169
189
/**
170
190
* Holds if flow from `pred` to `succ` is prohibited.
171
191
*/
You can’t perform that action at this time.
0 commit comments