[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / lldb / bindings / interface / SBInstructionListDocstrings.i
blob5d59cba178e0bd27c6d23a23df7d4551009216d2
1 %feature("docstring",
2 "Represents a list of machine instructions. SBFunction and SBSymbol have
3 GetInstructions() methods which return SBInstructionList instances.
5 SBInstructionList supports instruction (:py:class:`SBInstruction` instance) iteration.
6 For example (see also :py:class:`SBDebugger` for a more complete example), ::
8 def disassemble_instructions (insts):
9 for i in insts:
10 print i
12 defines a function which takes an SBInstructionList instance and prints out
13 the machine instructions in assembly format."
14 ) lldb::SBInstructionList;