Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions flowsignal.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,12 @@
return address need to be added to the return stack.

>>> flowsignal = FlowSignal(ftype=FlowSignal.RETURN)
>>> flowsignal.ftarget is None
True
>>> flowsignal.ftype
5
>>> print(flowsignal.ftarget)
-1
>>> flowsignal = FlowSignal(ftarget=100, ftype=FlowSignal.SIMPLE_JUMP)
>>> flowsignal.ftarget
>>> print(flowsignal.ftarget)
100
>>> flowsignal.ftype
>>> print(flowsignal.ftype)
0
"""

Expand Down
Loading