Returns True if the instruction is call instruction, otherwise returns False.
Query
from glider import*defquery(): calls = []#fetch a list of instructions instructions =Instructions().exec(10)for instruction in instructions:if(instruction.is_call()): calls.append(instruction)return calls