For the complete documentation index, see llms.txt. This page is also available as Markdown.
Call.name
Returns the called function name
property | name() -> str
Query Example
from glider import*defquery(): instructions =(Instructions().exec(1,98).filter(lambdax: x.is_call()))for ins in instructions:print(ins.get_value().name)return instructions