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

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

ObjFunction *compile(const char *source);

#endif