pocketlang/src/compiler.h

17 lines
263 B
C
Raw Normal View History

2021-02-07 15:40:00 +08:00
/*
* Copyright (c) 2021 Thakee Nathees
* Licensed under: MIT License
*/
#ifndef COMPILER_H
#define COMPILER_H
#include "common.h"
#include "var.h"
typedef struct Compiler Compiler;
2021-02-08 02:30:29 +08:00
Script* compileSource(MSVM* vm, const char* path);
2021-02-07 15:40:00 +08:00
#endif // COMPILER_H