@@ -34,8 +34,10 @@ export interface PreviousExecution {
3434export interface Interpretation {
3535 sourceLocationPrefix : string ;
3636 numTruncatedResults : number ;
37- // sortState being undefined means don't sort, just present results in the order
38- // they appear in the sarif file.
37+ /**
38+ * sortState being undefined means don't sort, just present results in the order
39+ * they appear in the sarif file.
40+ */
3941 sortState ?: InterpretedResultsSortState ;
4042 sarif : sarif . Log ;
4143}
@@ -130,17 +132,21 @@ export interface InterpretedResultsSortState {
130132 sortDirection : SortDirection ;
131133}
132134
133- // sortState being undefined means don't sort, just present results in the order
134- // they appear in the bqrs file.
135135interface ChangeRawResultsSortMsg {
136136 t : 'changeSort' ;
137137 resultSetName : string ;
138+ /**
139+ * sortState being undefined means don't sort, just present results in the order
140+ * they appear in the sarif file.
141+ */
138142 sortState ?: RawResultsSortState ;
139143}
140144
141- // sortState being undefined means don't sort, just present results in the order
142- // they appear in the sarif file.
143145interface ChangeInterpretedResultsSortMsg {
144146 t : 'changeInterpretedSort' ;
147+ /**
148+ * sortState being undefined means don't sort, just present results in the order
149+ * they appear in the sarif file.
150+ */
145151 sortState ?: InterpretedResultsSortState ;
146152}
0 commit comments