-
Notifications
You must be signed in to change notification settings - Fork 879
Expand file tree
/
Copy pathbreakpoints.json
More file actions
98 lines (98 loc) · 2.81 KB
/
breakpoints.json
File metadata and controls
98 lines (98 loc) · 2.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "XcodeGen Breakpoints Object",
"description": "XcodeGen Breakpoints Object.\n https://github.com/yonaskolb/XcodeGen/blob/master/Docs/ProjectSpec.md#breakpoints",
"type": "object",
"properties": {
"type": {
"description": "Breakpoint type",
"type": "string",
"enum": [
"File",
"Exception",
"SwiftError",
"OpenGLError",
"Symbolic",
"IDEConstraintError",
"IDETestFailure",
"FileBreakpoint",
"ExceptionBreakpoint",
"SwiftErrorBreakpoint",
"OpenGLErrorBreakpoint",
"SymbolicBreakpoint",
"IDEConstraintErrorBreakpoint",
"IDETestFailureBreakpoint"
],
"examples": [
"File",
"Exception",
"SwiftError",
"OpenGLError",
"Symbolic",
"IDEConstraintError",
"IDETestFailure",
"FileBreakpoint",
"ExceptionBreakpoint",
"SwiftErrorBreakpoint",
"OpenGLErrorBreakpoint",
"SymbolicBreakpoint",
"IDEConstraintErrorBreakpoint",
"IDETestFailureBreakpoint"
]
},
"enabled": {
"description": "Indicates whether it should be active. Default to true",
"default": true,
"type": "boolean"
},
"ignoreCount": {
"description": "Indicates how many times it should be ignored before stopping, Default to 0",
"type": "integer",
"default": 0
},
"continueAfterRunningActions": {
"description": "Indicates if should automatically continue after evaluating actions, Default to false",
"default": false,
"type": "boolean"
},
"path": {
"description": "Breakpoint file path (only required by file breakpoints)",
"type": "string"
},
"line": {
"description": "Breakpoint line (only required by file breakpoints)",
"type": "integer"
},
"symbol": {
"description": "Breakpoint symbol (only used by symbolic breakpoints)",
"type": "string"
},
"module": {
"description": "Breakpoint module (only used by symbolic breakpoints)",
"type": "string"
},
"scope": {
"description": "Breakpoint scope (only used by exception breakpoints)",
"type": "string",
"default": "Objective-C",
"enum": ["All", "Objective-C", "C++"]
},
"stopOnStyle": {
"description": "Indicates if should stop on style (only used by exception breakpoints) -throw (default) -catch",
"type": "string"
},
"condition": {
"description": "Breakpoint condition",
"type": "string"
},
"actions": {
"description": "breakpoint actions",
"type": "array",
"items": {
"type": "object",
"$ref": "breakpoint_action.json"
}
}
},
"required": ["type"]
}