mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Merge from vscode 2cfc8172e533e50c90e6a3152f6bfb1f82f963f3 (#6516)
* Merge from vscode 2cfc8172e533e50c90e6a3152f6bfb1f82f963f3 * fix tests
This commit is contained in:
13
src/vs/monaco.d.ts
vendored
13
src/vs/monaco.d.ts
vendored
@@ -5,6 +5,8 @@
|
||||
|
||||
declare namespace monaco {
|
||||
|
||||
// THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY.
|
||||
|
||||
export type Thenable<T> = PromiseLike<T>;
|
||||
|
||||
export interface IDisposable {
|
||||
@@ -27,7 +29,8 @@ declare namespace monaco {
|
||||
|
||||
|
||||
export enum MarkerTag {
|
||||
Unnecessary = 1
|
||||
Unnecessary = 1,
|
||||
Deprecated = 2
|
||||
}
|
||||
|
||||
export enum MarkerSeverity {
|
||||
@@ -583,6 +586,14 @@ declare namespace monaco {
|
||||
* Test if `otherRange` is in `range`. If the ranges are equal, will return true.
|
||||
*/
|
||||
static containsRange(range: IRange, otherRange: IRange): boolean;
|
||||
/**
|
||||
* Test if `range` is strictly in this range. `range` must start after and end before this range for the result to be true.
|
||||
*/
|
||||
strictContainsRange(range: IRange): boolean;
|
||||
/**
|
||||
* Test if `otherRange` is strinctly in `range` (must start after, and end before). If the ranges are equal, will return false.
|
||||
*/
|
||||
static strictContainsRange(range: IRange, otherRange: IRange): boolean;
|
||||
/**
|
||||
* A reunion of the two ranges.
|
||||
* The smallest position will be used as the start point, and the largest one as the end point.
|
||||
|
||||
Reference in New Issue
Block a user