Another inconclusive session: still nothing works, still making progress.
This commit is contained in:
parent
ef59563e25
commit
eed4711fee
35 changed files with 317 additions and 232 deletions
|
|
@ -43,9 +43,18 @@ struct stack_frame_payload {
|
|||
|
||||
struct pso_pointer make_frame( int arg_count, struct pso_pointer previous,
|
||||
... );
|
||||
|
||||
struct pso_pointer make_frame_with_env( int arg_count,
|
||||
struct pso_pointer previous,
|
||||
struct pso_pointer env, ... )
|
||||
struct pso_pointer env, ... );
|
||||
|
||||
struct pso_pointer make_frame_with_arglist_and_env( struct pso_pointer previous,
|
||||
struct pso_pointer argvalues,
|
||||
struct pso_pointer env);
|
||||
|
||||
struct pso_pointer make_frame_with_arglist( struct pso_pointer previous,
|
||||
struct pso_pointer argvalues);
|
||||
|
||||
struct pso_pointer destroy_stack_frame( struct pso_pointer fp,
|
||||
struct pso_pointer env );
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue