| 12345678910111213141516171819202122 |
- /**
- ******************************************************************************
- * @file : compiler.h
- * @author : simon
- * @brief : None
- * @attention : None
- * @date : 2023/8/17
- ******************************************************************************
- */
- #ifndef CLOX__COMPILER_H_
- #define CLOX__COMPILER_H_
- #include "object.h"
- #include "vm.h"
- /// \brief 编译
- /// \param source 源代码
- ObjFunction* compile(const char *source);
- void markCompilerRoots();
- #endif//CLOX__COMPILER_H_
|