@theia/debug 1.21.0-next.24 → 1.21.0-next.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/node/debug-model.d.ts +1 -1
- package/package.json +16 -16
- package/src/node/debug-model.ts +1 -1
|
@@ -85,7 +85,7 @@ export interface DebugAdapter {
|
|
|
85
85
|
*/
|
|
86
86
|
send(message: string): void;
|
|
87
87
|
/**
|
|
88
|
-
* An error has
|
|
88
|
+
* An error has occurred communicating with the debug adapter. This does not meant the debug adapter
|
|
89
89
|
* has terminated.
|
|
90
90
|
*/
|
|
91
91
|
onError: Event<Error>;
|
package/package.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/debug",
|
|
3
|
-
"version": "1.21.0-next.
|
|
3
|
+
"version": "1.21.0-next.29+0836c7a1273",
|
|
4
4
|
"description": "Theia - Debug Extension",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@theia/console": "1.21.0-next.
|
|
7
|
-
"@theia/core": "1.21.0-next.
|
|
8
|
-
"@theia/editor": "1.21.0-next.
|
|
9
|
-
"@theia/filesystem": "1.21.0-next.
|
|
10
|
-
"@theia/markers": "1.21.0-next.
|
|
11
|
-
"@theia/monaco": "1.21.0-next.
|
|
12
|
-
"@theia/output": "1.21.0-next.
|
|
13
|
-
"@theia/preferences": "1.21.0-next.
|
|
14
|
-
"@theia/process": "1.21.0-next.
|
|
15
|
-
"@theia/task": "1.21.0-next.
|
|
16
|
-
"@theia/terminal": "1.21.0-next.
|
|
17
|
-
"@theia/userstorage": "1.21.0-next.
|
|
18
|
-
"@theia/variable-resolver": "1.21.0-next.
|
|
19
|
-
"@theia/workspace": "1.21.0-next.
|
|
6
|
+
"@theia/console": "1.21.0-next.29+0836c7a1273",
|
|
7
|
+
"@theia/core": "1.21.0-next.29+0836c7a1273",
|
|
8
|
+
"@theia/editor": "1.21.0-next.29+0836c7a1273",
|
|
9
|
+
"@theia/filesystem": "1.21.0-next.29+0836c7a1273",
|
|
10
|
+
"@theia/markers": "1.21.0-next.29+0836c7a1273",
|
|
11
|
+
"@theia/monaco": "1.21.0-next.29+0836c7a1273",
|
|
12
|
+
"@theia/output": "1.21.0-next.29+0836c7a1273",
|
|
13
|
+
"@theia/preferences": "1.21.0-next.29+0836c7a1273",
|
|
14
|
+
"@theia/process": "1.21.0-next.29+0836c7a1273",
|
|
15
|
+
"@theia/task": "1.21.0-next.29+0836c7a1273",
|
|
16
|
+
"@theia/terminal": "1.21.0-next.29+0836c7a1273",
|
|
17
|
+
"@theia/userstorage": "1.21.0-next.29+0836c7a1273",
|
|
18
|
+
"@theia/variable-resolver": "1.21.0-next.29+0836c7a1273",
|
|
19
|
+
"@theia/workspace": "1.21.0-next.29+0836c7a1273",
|
|
20
20
|
"jsonc-parser": "^2.2.0",
|
|
21
21
|
"mkdirp": "^0.5.0",
|
|
22
22
|
"p-debounce": "^2.1.0",
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"nyc": {
|
|
70
70
|
"extends": "../../configs/nyc.json"
|
|
71
71
|
},
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "0836c7a12731b7bd148b217dc59943a0f110ec45"
|
|
73
73
|
}
|
package/src/node/debug-model.ts
CHANGED
|
@@ -105,7 +105,7 @@ export interface DebugAdapter {
|
|
|
105
105
|
*/
|
|
106
106
|
send(message: string): void;
|
|
107
107
|
/**
|
|
108
|
-
* An error has
|
|
108
|
+
* An error has occurred communicating with the debug adapter. This does not meant the debug adapter
|
|
109
109
|
* has terminated.
|
|
110
110
|
*/
|
|
111
111
|
onError: Event<Error>;
|