mirror of
https://github.com/CPunch/Cosmo.git
synced 2025-05-01 15:40:23 +00:00
also a minor GC bug in cosmoO_newError was fixed. i'm going to try to phase out cosmoM_freezeGC & friends since that would cause hell with this new error handling solution. the only thing still using it is the GC.
11 lines
203 B
C
11 lines
203 B
C
#ifndef CPARSE_H
|
|
#define CPARSE_H
|
|
|
|
#include "clex.h"
|
|
#include "cosmo.h"
|
|
|
|
// compiles source into CChunk
|
|
CObjFunction *cosmoP_compileString(CState *state, const char *source, const char *module);
|
|
|
|
#endif
|