ExternalPoint.source_code()
Returns corresponding node in procedure graph.
source_code() → str
Query Example
from glider import *
def query():
functions = (
Functions()
.with_name("transferFrom")
.exec(1)
)
arguments = functions[0].arguments()
print(arguments.list()[0].get_variable())
print(arguments.list()[0].source_code())
return functions
Output Example

Last updated