We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5d58bb commit b088da0Copy full SHA for b088da0
commands/FBDebugCommands.py
@@ -227,6 +227,11 @@ def description(self):
227
as seen above, see https://github.com/facebook/chisel/wiki/findinstances.
228
"""
229
230
+ def lex(self, commandLine):
231
+ # Can't use default shlex splitting because it strip quotes which breaks
232
+ # NSPredicate syntax. Split the input into type and rest (the query).
233
+ return commandLine.split(' ', 1)
234
+
235
def run(self, arguments, options):
236
if not self.loadChiselIfNecessary():
237
return
0 commit comments