CallNode.callable()
Returns corresponding callable.
callable() โ Callable
Query Example
from glider import *
def query():
contracts = Contracts().exec(1)
contract = contracts[0]
call_nodes = contract.call_graph().all_nodes()
for call_node in call_nodes:
callable = call_node.callable()
print(callable.signature())
return contractsExample Output
Output below represents printed output from the caller's source code:
Last updated