5 def decorated1(debugger
, args
, exe_ctx
, result
, dict):
7 Python command defined by @lldb.command
9 print("hello from decorated1", file=result
)
12 @lldb.command(doc
="Python command defined by @lldb.command")
13 def decorated2(debugger
, args
, exe_ctx
, result
, dict):
15 This docstring is overridden.
17 print("hello from decorated2", file=result
)
21 def decorated3(debugger
, args
, result
, dict):
23 Python command defined by @lldb.command
25 print("hello from decorated3", file=result
)
28 @lldb.command("decorated4")
29 def _decorated4(debugger
, args
, exe_ctx
, result
, dict):
31 Python command defined by @lldb.command
33 print("hello from decorated4", file=result
)