diff --git a/out/testApi.d.ts b/out/testApi.d.ts index 52d78b05..097bec6f 100644 --- a/out/testApi.d.ts +++ b/out/testApi.d.ts @@ -42,7 +42,8 @@ export declare enum Status { TagParsingBegun = 1, TagParsingDone = 2, IntelliSenseCompiling = 3, - IntelliSenseReady = 4 + IntelliSenseReady = 4, + Idle = 5 } /** * Information about the status of Tag Parser or IntelliSense for an active document. diff --git a/out/testApi.js b/out/testApi.js index 3e8d162c..62d066c9 100644 --- a/out/testApi.js +++ b/out/testApi.js @@ -25,6 +25,7 @@ var Status; Status[Status["TagParsingDone"] = 2] = "TagParsingDone"; Status[Status["IntelliSenseCompiling"] = 3] = "IntelliSenseCompiling"; Status[Status["IntelliSenseReady"] = 4] = "IntelliSenseReady"; + Status[Status["Idle"] = 5] = "Idle"; })(Status = exports.Status || (exports.Status = {})); function isCppToolsTestExtension(extension) { return extension.getTestApi !== undefined; diff --git a/package-lock.json b/package-lock.json index 17f0acde..a0e48556 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-cpptools", - "version": "6.1.0", + "version": "6.2.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "vscode-cpptools", - "version": "6.1.0", + "version": "6.2.0", "license": "MIT", "devDependencies": { "@types/node": "^14.14.16", diff --git a/package.json b/package.json index 3a28c757..8a66a6fb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vscode-cpptools", - "version": "6.1.0", + "version": "6.2.0", "description": "Public API for vscode-cpptools", "typings": "./out/api.d.ts", "main": "./out/api.js", diff --git a/testApi.ts b/testApi.ts index 1f708ef5..5efb0efd 100644 --- a/testApi.ts +++ b/testApi.ts @@ -53,7 +53,8 @@ export enum Status { TagParsingBegun = 1, TagParsingDone = 2, IntelliSenseCompiling = 3, - IntelliSenseReady = 4 + IntelliSenseReady = 4, + Idle = 5 } /**