Skip to content
This repository was archived by the owner on Apr 3, 2024. It is now read-only.

Commit 185f1c2

Browse files
fix: make debugee variables public (#352)
Node 4 and 6 compiler now complains for these private variables were never read. These were just not used within the debug agent. However, we need to send this over to debug server via wire and these properties will be needed. Therefore, we change them to public.
1 parent 8078771 commit 185f1c2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/debuggee.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ export interface DebuggeeProperties {
3434
}
3535

3636
export class Debuggee {
37-
private uniquifier: string;
38-
private description: string;
39-
private agentVersion?: string;
40-
private sourceContexts?: Array<{[key: string]: any}>;
37+
uniquifier: string;
38+
description: string;
39+
agentVersion?: string;
40+
sourceContexts?: Array<{[key: string]: any}>;
4141

4242
// Public to allow for testing
4343
project: string;

0 commit comments

Comments
 (0)