mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-10 02:02:35 -05:00
Merge VS Code 1.31.1 (#4283)
This commit is contained in:
@@ -119,6 +119,7 @@ export interface IViewModel {
|
||||
* Gives a hint that a lot of requests are about to come in for these line numbers.
|
||||
*/
|
||||
setViewport(startLineNumber: number, endLineNumber: number, centeredLineNumber: number): void;
|
||||
tokenizeViewport(): void;
|
||||
setHasFocus(hasFocus: boolean): void;
|
||||
|
||||
getDecorationsInViewport(visibleRange: Range): ViewModelDecoration[];
|
||||
@@ -154,11 +155,11 @@ export interface IViewModel {
|
||||
|
||||
export class MinimapLinesRenderingData {
|
||||
public readonly tabSize: number;
|
||||
public readonly data: (ViewLineData | null)[];
|
||||
public readonly data: Array<ViewLineData | null>;
|
||||
|
||||
constructor(
|
||||
tabSize: number,
|
||||
data: (ViewLineData | null)[]
|
||||
data: Array<ViewLineData | null>
|
||||
) {
|
||||
this.tabSize = tabSize;
|
||||
this.data = data;
|
||||
|
||||
Reference in New Issue
Block a user