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
Copy file name to clipboardexpand all lines: commands/FBComponentCommands.py
+4-4
Original file line number
Diff line number
Diff line change
@@ -70,15 +70,15 @@ def options(self):
70
70
arg="upwards",
71
71
boolean=True,
72
72
default=False,
73
-
help="Print only the component hierarchy found on the first superview that has them, carrying the search up to its window.",# noqa B950
73
+
help="Print only the component hierarchy found on the first superview that has them, carrying the search up to its window.",
74
74
),
75
75
fb.FBCommandArgument(
76
76
short="-v",
77
77
long="--show-views",
78
78
arg="showViews",
79
79
type="BOOL",
80
80
default="YES",
81
-
help="Prints the component hierarchy and does not print the views if the supplied argument is 'NO'. Supply either a 'YES' or a 'NO'. The default is to show views.",# noqa B950
81
+
help="Prints the component hierarchy and does not print the views if the supplied argument is 'NO'. Supply either a 'YES' or a 'NO'. The default is to show views.",
82
82
),
83
83
]
84
84
@@ -87,7 +87,7 @@ def args(self):
87
87
fb.FBCommandArgument(
88
88
arg="aView",
89
89
type="UIView* or CKComponent*",
90
-
help="The view or component from which the search for components begins.",# noqa B950
90
+
help="The view or component from which the search for components begins.",
return"Set a breakpoint for a relative address within the framework/library that's currently running. This does the work of finding the offset for the framework/library and sliding your address accordingly."# noqa B950
91
+
return"Set a breakpoint for a relative address within the framework/library that's currently running. This does the work of finding the offset for the framework/library and sliding your address accordingly."
92
92
93
93
defargs(self):
94
94
return [
95
95
fb.FBCommandArgument(
96
96
arg="address",
97
97
type="string",
98
-
help="Address within the currently running framework to set a breakpoint on.",# noqa B950
98
+
help="Address within the currently running framework to set a breakpoint on.",
99
99
)
100
100
]
101
101
@@ -118,14 +118,14 @@ def name(self):
118
118
return"bmessage"
119
119
120
120
defdescription(self):
121
-
return"Set a breakpoint for a selector on a class, even if the class itself doesn't override that selector. It walks the hierarchy until it finds a class that does implement the selector and sets a conditional breakpoint there."# noqa B950
121
+
return"Set a breakpoint for a selector on a class, even if the class itself doesn't override that selector. It walks the hierarchy until it finds a class that does implement the selector and sets a conditional breakpoint there."
122
122
123
123
defargs(self):
124
124
return [
125
125
fb.FBCommandArgument(
126
126
arg="expression",
127
127
type="string",
128
-
help='Expression to set a breakpoint on, e.g. "-[MyView setFrame:]", "+[MyView awesomeClassMethod]" or "-[0xabcd1234 setFrame:]"',# noqa B950
128
+
help='Expression to set a breakpoint on, e.g. "-[MyView setFrame:]", "+[MyView awesomeClassMethod]" or "-[0xabcd1234 setFrame:]"',
Copy file name to clipboardexpand all lines: commands/FBDisplayCommands.py
+4-4
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ def name(self):
47
47
return"border"
48
48
49
49
defdescription(self):
50
-
return"Draws a border around <viewOrLayer>. Color and width can be optionally provided. Additionally depth can be provided in order to recursively border subviews."# noqa B950
50
+
return"Draws a border around <viewOrLayer>. Color and width can be optionally provided. Additionally depth can be provided in order to recursively border subviews."
51
51
52
52
defargs(self):
53
53
return [
@@ -82,7 +82,7 @@ def options(self):
82
82
arg="depth",
83
83
type="int",
84
84
default=0,
85
-
help="Number of levels of subviews to border. Each level gets a different color beginning with the provided or default color",# noqa B950
85
+
help="Number of levels of subviews to border. Each level gets a different color beginning with the provided or default color",
86
86
),
87
87
]
88
88
@@ -186,7 +186,7 @@ def name(self):
186
186
return"mask"
187
187
188
188
defdescription(self):
189
-
return"Add a transparent rectangle to the window to reveal a possibly obscured or hidden view or layer's bounds"# noqa B950
189
+
return"Add a transparent rectangle to the window to reveal a possibly obscured or hidden view or layer's bounds"
190
190
191
191
defargs(self):
192
192
return [
@@ -248,7 +248,7 @@ def name(self):
248
248
return"caflush"
249
249
250
250
defdescription(self):
251
-
return"Force Core Animation to flush. This will 'repaint' the UI but also may mess with ongoing animations."# noqa B950
251
+
return"Force Core Animation to flush. This will 'repaint' the UI but also may mess with ongoing animations."
Copy file name to clipboardexpand all lines: commands/FBFlickerCommands.py
+1-1
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ def args(self):
56
56
57
57
defrun(self, arguments, options):
58
58
print(
59
-
"\nUse the following and (q) to quit.\n(w) move to superview\n(s) move to first subview\n(a) move to previous sibling\n(d) move to next sibling\n(p) print the hierarchy\n"# noqa B950
59
+
"\nUse the following and (q) to quit.\n(w) move to superview\n(s) move to first subview\n(a) move to previous sibling\n(d) move to next sibling\n(p) print the hierarchy\n"
Copy file name to clipboardexpand all lines: commands/FBInvocationCommands.py
+3-3
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ def name(self):
20
20
return"pinvocation"
21
21
22
22
defdescription(self):
23
-
return"Print the stack frame, receiver, and arguments of the current invocation. It will fail to print all arguments if any arguments are variadic (varargs).\n\nNOTE: Sadly this is currently only implemented on x86."# noqa B950
23
+
return"Print the stack frame, receiver, and arguments of the current invocation. It will fail to print all arguments if any arguments are variadic (varargs).\n\nNOTE: Sadly this is currently only implemented on x86."
24
24
25
25
defoptions(self):
26
26
return [
@@ -30,7 +30,7 @@ def options(self):
30
30
arg="all",
31
31
default=False,
32
32
boolean=True,
33
-
help="Specify to print the entire stack instead of just the current frame.",# noqa B950
33
+
help="Specify to print the entire stack instead of just the current frame.",
0 commit comments