You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fixed case where if serialization fails the server will die silently.
* Updated to latest dap spec
* updated enum to have proper string values
* Updated coverlet config
/// If an attribute 'variablesReference' exists and its value is > 0, the output contains objects which can be retrieved by passing 'variablesReference' to the 'variables' request.
37
+
/// Support for keeping an output log organized by grouping related messages.
38
+
/// Values:
39
+
/// 'start': Start a new group in expanded mode. Subsequent output events are
40
+
/// members of the group and should be shown indented.
41
+
/// The 'output' attribute becomes the name of the group and is not indented.
42
+
/// 'startCollapsed': Start a new group in collapsed mode. Subsequent output
43
+
/// events are members of the group and should be shown indented (as soon as
44
+
/// the group is expanded).
45
+
/// The 'output' attribute becomes the name of the group and is not indented.
46
+
/// 'end': End the current group and decreases the indentation of subsequent
47
+
/// output events.
48
+
/// A non empty 'output' attribute is shown as the unindented end of the
49
+
/// group.
50
+
/// etc.
51
+
/// </summary>
52
+
[Optional]
53
+
publicOutputEventGroupGroup{get;set;}
54
+
55
+
/// <summary>
56
+
/// If an attribute 'variablesReference' exists and its value is > 0, the
57
+
/// output contains objects which can be retrieved by passing
58
+
/// 'variablesReference' to the 'variables' request. The value should be less
59
+
/// than or equal to 2147483647 (2^31-1).
38
60
/// </summary>
39
61
[Optional]
40
62
publiclong?VariablesReference{get;init;}
@@ -63,5 +85,22 @@ public record OutputEvent : IRequest
0 commit comments