Instructions.internal_calls()

Returns a list of all internal call instructions if the parameter is skipped. Otherwise, returns call instructions of corresponding type (internal, public or private)

internal_calls(visibility: str = '') → Instructions

Query Example

from glider import *

def query():

  return Instructions().internal_calls().exec(3,3)

Output Example

Last updated