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

Commit

Permalink
fix: make debugee variables public (#352)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
gaofanmichael committed Nov 2, 2017
1 parent 8078771 commit 185f1c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/debuggee.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ export interface DebuggeeProperties {
}

export class Debuggee {
private uniquifier: string;
private description: string;
private agentVersion?: string;
private sourceContexts?: Array<{[key: string]: any}>;
uniquifier: string;
description: string;
agentVersion?: string;
sourceContexts?: Array<{[key: string]: any}>;

// Public to allow for testing
project: string;
Expand Down

0 comments on commit 185f1c2

Please sign in to comment.