We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
parsePredictedClassifications
1 parent 2e29d0c commit 558f51bCopy full SHA for 558f51b
1 file changed
extensions/ql-vscode/src/data-extensions-editor/auto-model.ts
@@ -68,6 +68,14 @@ export function createAutoModelRequest(
68
return request;
69
}
70
71
+/**
72
+ * For now, we have a simplified model that only models methods as sinks. It does not model methods as neutral,
73
+ * so we aren't actually able to correctly determine that a method is neutral; it could still be a source or summary.
74
+ * However, to keep this method simple and give output to the user, we will model any method for which none of its
75
+ * arguments are modeled as sinks as neutral.
76
+ *
77
+ * If there are multiple arguments which are modeled as sinks, we will only model the first one.
78
+ */
79
export function parsePredictedClassifications(
80
predicted: Method[],
81
): Record<string, ModeledMethod> {
0 commit comments