Returns the source code of the argument variable.
Last updated 1 month ago
source_code() β str
from glider import * def query(): functions = ( Functions() .exec(1, 50) ) for func in functions: args = func.arguments() print(args.list()[0].get_variable().source_code()) return functions