aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/compiler.h
blob: 37e159dd3800d11ab552de070841afa6a7e43db2 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef COMPILER_H
#define COMPILER_H

#include "object.h"
#include "vm.h"

ObjFunction *compile(const char *source);
void markCompilerRoots();

#endif