Returns the called function signature
Last updated 1 month ago
property | signature() -> str
from glider import * def query(): instructions = ( Instructions() .exec(1,98) .filter(lambda x: x.is_call()) ) for ins in instructions: print(ins.get_value().signature) return instructions