debug api: fix _findProcessByUUID

This commit is contained in:
Andre Weinand
2017-07-10 00:57:17 +02:00
parent 25fd53fd71
commit d6a28e5214
2 changed files with 5 additions and 1 deletions

View File

@@ -97,6 +97,10 @@ export class ExtHostDebugSession implements vscode.DebugSession {
this._name = name;
};
public get id(): string {
return this._id;
}
public get type(): string {
return this._type;
}