| 123456789101112131415161718192021 |
- /**
- ******************************************************************************
- * @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 源代码
- bool compile(const char *source, Chunk *chunk);
- #endif//CLOX__COMPILER_H_
|