Instructions.entry_point_instructions()

Returns an Instructions object for the 'entry point' instructions

entry_point_instructions() → Instructions

The Instructions object returned includes all entry points to functions.

Query Example

from glider import *


def query():
  return Instructions().entry_point_instructions().exec(1)

Example Output

As this returns the entry point to the function, the "sol_instruction" field contains the function body.

Last updated