File tree Expand file tree Collapse file tree
extensions/ql-vscode/src/pure Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ export function shouldHighlightLine(
200200 * A line of code split into: plain text before the highlighted section, the highlighted
201201 * text itself, and plain text after the highlighted section.
202202 */
203- interface partiallyHighlightedLine {
203+ export interface PartiallyHighlightedLine {
204204 plainSection1 : string ;
205205 highlightedSection : string ;
206206 plainSection2 : string ;
@@ -213,7 +213,7 @@ export function parseHighlightedLine(
213213 line : string ,
214214 lineNumber : number ,
215215 highlightedRegion : HighlightedRegion
216- ) : partiallyHighlightedLine {
216+ ) : PartiallyHighlightedLine {
217217 const isSingleLineHighlight = highlightedRegion . endLine === undefined ;
218218 const isFirstHighlightedLine = lineNumber === highlightedRegion . startLine ;
219219 const isLastHighlightedLine = lineNumber === highlightedRegion . endLine ;
You can’t perform that action at this time.
0 commit comments