@@ -20,6 +20,8 @@ public class InitializeRequestArguments
20
20
21
21
public bool LinesStartAt1 { get ; set ; }
22
22
23
+ public bool ColumnsStartAt1 { get ; set ; }
24
+
23
25
public string PathFormat { get ; set ; }
24
26
25
27
public bool SourceMaps { get ; set ; }
@@ -30,31 +32,31 @@ public class InitializeRequestArguments
30
32
public class InitializeResponseBody
31
33
{
32
34
/// <summary>
33
- /// Gets or sets a boolean value that determines whether the debug adapter
35
+ /// Gets or sets a boolean value that determines whether the debug adapter
34
36
/// supports the configurationDoneRequest.
35
37
/// </summary>
36
38
public bool SupportsConfigurationDoneRequest { get ; set ; }
37
39
38
40
/// <summary>
39
- /// Gets or sets a boolean value that determines whether the debug adapter
41
+ /// Gets or sets a boolean value that determines whether the debug adapter
40
42
/// supports functionBreakpoints.
41
43
/// </summary>
42
44
public bool SupportsFunctionBreakpoints { get ; set ; }
43
45
44
46
/// <summary>
45
- /// Gets or sets a boolean value that determines whether the debug adapter
47
+ /// Gets or sets a boolean value that determines whether the debug adapter
46
48
/// supports conditionalBreakpoints.
47
49
/// </summary>
48
50
public bool SupportsConditionalBreakpoints { get ; set ; }
49
51
50
52
/// <summary>
51
- /// Gets or sets a boolean value that determines whether the debug adapter
53
+ /// Gets or sets a boolean value that determines whether the debug adapter
52
54
/// supports breakpoints that break execution after a specified number of hits.
53
55
/// </summary>
54
56
public bool SupportsHitConditionalBreakpoints { get ; set ; }
55
57
56
58
/// <summary>
57
- /// Gets or sets a boolean value that determines whether the debug adapter
59
+ /// Gets or sets a boolean value that determines whether the debug adapter
58
60
/// supports a (side effect free) evaluate request for data hovers.
59
61
/// </summary>
60
62
public bool SupportsEvaluateForHovers { get ; set ; }
0 commit comments