We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dcb554 commit be05b80Copy full SHA for be05b80
swift/ql/lib/codeql/swift/dataflow/FlowSources.qll
@@ -25,6 +25,15 @@ abstract class LocalFlowSource extends FlowSource { }
25
*/
26
abstract class RemoteFlowSource extends FlowSource { }
27
28
+/**
29
+ * A data flow source of local user input that is defined through 'models as data'.
30
+ */
31
+private class ExternalLocalFlowSource extends RemoteFlowSource {
32
+ ExternalLocalFlowSource() { sourceNode(this, "local") }
33
+
34
+ override string getSourceType() { result = "external" }
35
+}
36
37
/**
38
* A data flow source of remote user input that is defined through 'models as data'.
39
0 commit comments