mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
75ec6bf244
This is a nasty commit, sorry, but 99% of the commit is interdependent.
17 lines
361 B
Objective-C
17 lines
361 B
Objective-C
#ifndef __Lambda_h
|
|
#define __Lambda_h
|
|
#include "Procedure.h"
|
|
#include "Cons.h"
|
|
#include "Frame.h"
|
|
#include "CompiledCode.h"
|
|
|
|
@interface Lambda: Procedure
|
|
{
|
|
Frame []env;
|
|
CompiledCode []code;
|
|
}
|
|
+ (id) newWithCode: (CompiledCode []) c environment: (Frame []) e;
|
|
- (id) initWithCode: (CompiledCode []) c environment: (Frame []) e;
|
|
@end
|
|
|
|
#endif //__Lambda_h
|