Returns an Instructions object for the 'entry point' instructions
Last updated 3 months ago
entry_point_instructions() →
The object returned includes all entry points to functions.
from glider import * def query(): return Instructions().entry_point_instructions().exec(1)
As this returns the entry point to the function, the "sol_instruction" field contains the function body.
Instructions