mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 00:24:12 +00:00
281b683e14
standard, implemented in Ruamoko. Currently works for a few simple "Hello, world!" programs.
18 lines
462 B
Objective-C
18 lines
462 B
Objective-C
#ifndef __Continuation_h
|
|
#define __Continuation_h
|
|
#include "SchemeObject.h"
|
|
#include "Procedure.h"
|
|
#include "state.h"
|
|
|
|
@interface Continuation: Procedure
|
|
{
|
|
state_t state;
|
|
SchemeObject cont;
|
|
Frame env;
|
|
}
|
|
+ (id) newWithState: (state_t []) st environment: (Frame) e continuation: (Continuation) c pc: (integer) p;
|
|
- (id) initWithState: (state_t []) st environment: (Frame) e continuation: (Continuation) c pc: (integer) p;
|
|
|
|
@end
|
|
|
|
#endif //__Procedure_h
|