mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
bc73af37f2
collector a bit.
25 lines
461 B
Objective-C
25 lines
461 B
Objective-C
#ifndef __Compiler_h
|
|
#define __Compiler_h
|
|
#include "SchemeObject.h"
|
|
#include "CompiledCode.h"
|
|
#include "Symbol.h"
|
|
#include "Scope.h"
|
|
#include "Error.h"
|
|
|
|
#define TAIL 1
|
|
|
|
@interface Compiler: SchemeObject
|
|
{
|
|
CompiledCode code;
|
|
SchemeObject sexpr;
|
|
Scope scope;
|
|
Error err;
|
|
}
|
|
|
|
+ (id) newWithLambda: (SchemeObject) xp scope: (Scope) sc;
|
|
- (id) initWithLambda: (SchemeObject) xp scope: (Scope) sc;
|
|
- (SchemeObject) compile;
|
|
|
|
@end
|
|
|
|
#endif //__Compiler_h
|