File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
extensions/ql-vscode/src/data-extensions-editor Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,14 @@ export function createAutoModelRequest(
6868 return request ;
6969}
7070
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+ */
7179export function parsePredictedClassifications (
7280 predicted : Method [ ] ,
7381) : Record < string , ModeledMethod > {
You can’t perform that action at this time.
0 commit comments