-
Notifications
You must be signed in to change notification settings - Fork 877
Expand file tree
/
Copy pathbreakpoint_action.json
More file actions
123 lines (123 loc) · 3.19 KB
/
breakpoint_action.json
File metadata and controls
123 lines (123 loc) · 3.19 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "XcodeGen Breakpoint Action Object",
"description": "XcodeGen Breakpoint Action Object.\n https://github.com/yonaskolb/XcodeGen/blob/master/Docs/ProjectSpec.md#breakpoint-action",
"type": "object",
"properties": {
"type": {
"description": "Breakpoint action type",
"type": "string",
"enum": [
"DebuggerCommand",
"Log",
"ShellCommand",
"GraphicsTrace",
"AppleScript",
"Sound"
],
"examples": [
"DebuggerCommand",
"Log",
"ShellCommand",
"GraphicsTrace",
"AppleScript",
"Sound"
]
},
"command": {
"description": "Debugger command (only used by debugger command breakpoint action)",
"type": "string"
},
"message": {
"description": "Log message (only used log message breakpoint action)",
"type": "string"
},
"conveyanceType": {
"description": "Conveyance type (only used by log message breakpoint action)",
"type": "string",
"enum": ["console", "speak"],
"examples": ["console", "speak"]
},
"path": {
"description": "Shell command file path (only used by shell command breakpoint action)",
"type": "string"
},
"arguments": {
"description": "Shell command arguments (only used by shell command breakpoint action)",
"type": "string"
},
"waitUntilDone": {
"description": "Indicates whether it should wait until done (only used by shell command breakpoint action). Default to false",
"default": false,
"type": "boolean"
},
"script": {
"description": "AppleScript (only used by AppleScript breakpoint action)",
"type": "string"
},
"sound": {
"description": "Sound name (only used by sound breakpoint action)",
"type": "string",
"default": "Basso",
"enum": [
"Basso",
"Blow",
"Bottle",
"Frog",
"Funk",
"Glass",
"Hero",
"Morse",
"Ping",
"Pop",
"Purr",
"Sosumi",
"Submarine",
"Tink"
],
"examples": [
"Basso",
"Blow",
"Bottle",
"Frog",
"Funk",
"Glass",
"Hero",
"Morse",
"Ping",
"Pop",
"Purr",
"Sosumi",
"Submarine",
"Tink"
]
},
"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"]
}