File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -249,6 +249,7 @@ def args(self) -> list[LLVMArgument]:
249249@final
250250class LLVMFunctionExitEvent (LLVMStepEvent ):
251251 """Represent an LLVM function exit event in a proof trace.
252+
252253 Attributes:
253254 _function_exit_event (llvm_function_exit_event): The underlying LLVM function exit event object.
254255 """
@@ -257,13 +258,15 @@ class LLVMFunctionExitEvent(LLVMStepEvent):
257258
258259 def __init__ (self , function_exit_event : llvm_function_exit_event ) -> None :
259260 """Initialize a new instance of the LLVMFunctionExitEvent class.
261+
260262 Args:
261263 function_exit_event (llvm_function_exit_event): The LLVM function exit event object.
262264 """
263265 self ._function_exit_event = function_exit_event
264266
265267 def __repr__ (self ) -> str :
266268 """Return a string representation of the object.
269+
267270 Returns:
268271 A string representation of the LLVMFunctionExitEvent object using the AST printing method.
269272 """
You can’t perform that action at this time.
0 commit comments