[libc++] Remove duplicated _LIBCPP_HIDE_FROM_ABI from a few declarations (#122323)
[llvm-project.git] / lldb / test / API / commands / command / container / welcome.py
blob7a9ea266bf72cfd45a03b6afdbbfdb9f8368a935
1 import lldb
2 import sys
5 class WelcomeCommand(object):
6 def __init__(self, debugger, session_dict):
7 pass
9 def get_short_help(self):
10 return "Just a docstring for Welcome\nA command that says hello to LLDB users"
12 def __call__(self, debugger, args, exe_ctx, result):
13 print("Hello " + args + ", welcome to LLDB", file=result)
14 return None
17 class WelcomeCommand2(object):
18 def __init__(self, debugger, session_dict):
19 pass
21 def get_short_help(self):
22 return "A docstring for the second Welcome\nA command that says hello to LLDB users"
24 def __call__(self, debugger, args, exe_ctx, result):
25 print("Hello " + args + ", welcome again to LLDB", file=result)
26 return None