Initial commit
This commit is contained in:
commit
b2edca2cb4
25 changed files with 3590 additions and 0 deletions
11
compiler.h
Normal file
11
compiler.h
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#ifndef clox_compiler_h
|
||||
#define clox_compiler_h
|
||||
|
||||
#include "object.h"
|
||||
#include "vm.h"
|
||||
|
||||
ObjFunction* compile(const char* source);
|
||||
void markCompilerRoots();
|
||||
|
||||
#endif // clox_compiler_h
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue