File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
extensions/ql-vscode/src/log-insights Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,14 @@ export interface PipelineSummary {
1717 * to a web view (which rules out `Map` values, for example).
1818 */
1919export interface PerformanceComparisonDataFromLog {
20- /** Names of predicates mentioned in the log */
20+ /**
21+ * Names of predicates mentioned in the log.
22+ *
23+ * For compactness, details of these predicates are stored in a "struct of arrays" style.
24+ *
25+ * All fields (except those ending with `Indices`) should contain an array of the same length as `names`;
26+ * details of a given predicate should be stored at the same index in each of those arrays.
27+ */
2128 names : string [ ] ;
2229
2330 /** Number of milliseconds spent evaluating the `i`th predicate from the `names` array. */
You can’t perform that action at this time.
0 commit comments