Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

Commit 72f4edd

Browse files
committed
convert 8 space tab to 4 space tab
1 parent 1755239 commit 72f4edd

File tree

5 files changed

+770
-770
lines changed

5 files changed

+770
-770
lines changed

src/common.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export enum SocketClientState {
2-
ready,
3-
connected,
4-
closed
5-
}
2+
ready,
3+
connected,
4+
closed
5+
}

src/interface.ts

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,34 @@
22
* This interface should always match the schema found in the vscode-ruby extension manifest.
33
*/
44
export interface LaunchRequestArguments {
5-
/** An absolute path to the program to debug. */
6-
program: string;
7-
/** Optional arguments passed to the program being debugged. */
8-
args: string[];
9-
/** Automatically stop target after launch. If not specified, target does not stop. */
10-
stopOnEntry?: boolean;
11-
/** Show debugger process output. If not specified, there will only be executable output */
12-
showDebuggerOutput?: boolean;
13-
/** Optional arguments passed to the runtime executable. */
14-
runtimeArgs?: string[];
5+
/** An absolute path to the program to debug. */
6+
program: string;
7+
/** Optional arguments passed to the program being debugged. */
8+
args: string[];
9+
/** Automatically stop target after launch. If not specified, target does not stop. */
10+
stopOnEntry?: boolean;
11+
/** Show debugger process output. If not specified, there will only be executable output */
12+
showDebuggerOutput?: boolean;
13+
/** Optional arguments passed to the runtime executable. */
14+
runtimeArgs?: string[];
1515
}
1616

1717
export interface IRubyEvaluationResult {
18-
name: string;
19-
kind: string;
20-
type: string;
21-
value: string;
22-
id: string;
23-
variablesReference: number;
18+
name: string;
19+
kind: string;
20+
type: string;
21+
value: string;
22+
id: string;
23+
variablesReference: number;
2424
}
2525

2626
export interface IDebugVariable {
27-
objectId?: number;
28-
variables?: IRubyEvaluationResult[];
27+
objectId?: number;
28+
variables?: IRubyEvaluationResult[];
2929
}
3030

3131
export interface ICommand {
32-
command: string;
33-
resolve: (value?: any) => void
34-
reject: (error?: any) => void
32+
command: string;
33+
resolve: (value?: any) => void
34+
reject: (error?: any) => void
3535
}

0 commit comments

Comments
 (0)