11 lines
182 B
C
11 lines
182 B
C
#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
|
|
|