We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents be9cf11 + 354f464 commit 25f1026Copy full SHA for 25f1026
1 file changed
flowsignal.py
@@ -21,12 +21,14 @@
21
return address need to be added to the return stack.
22
23
>>> flowsignal = FlowSignal(ftype=FlowSignal.RETURN)
24
->>> print(flowsignal.ftarget)
25
--1
+>>> flowsignal.ftarget is None
+True
26
+>>> flowsignal.ftype
27
+5
28
>>> flowsignal = FlowSignal(ftarget=100, ftype=FlowSignal.SIMPLE_JUMP)
29
+>>> flowsignal.ftarget
30
100
->>> print(flowsignal.ftype)
31
32
0
33
"""
34
0 commit comments