Skip to content

Commit da33fb6

Browse files
committed
better parameter names for DebugClient constructor; fixes #223
1 parent 314ebd7 commit da33fb6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

testSupport/src/debugClient.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ export class DebugClient extends ProtocolClient {
5757
* return dc.hitBreakpoint({ program: 'test.js' }, 'test.js', 15);
5858
* });
5959
*/
60-
constructor(runtime: string, executable: string, debugType: string, spawnOptions?: cp.SpawnOptions, enableStderr?: boolean) {
60+
constructor(debugAdapterRuntime: string, debugAdapterExecutable: string, debugType: string, spawnOptions?: cp.SpawnOptions, enableStderr?: boolean) {
6161
super();
62-
this._runtime = runtime;
63-
this._executable = executable;
62+
this._runtime = debugAdapterRuntime;
63+
this._executable = debugAdapterExecutable;
6464
this._spawnOptions = spawnOptions;
6565
this._enableStderr = enableStderr;
6666
this._debugType = debugType;

0 commit comments

Comments
 (0)