Compiler.h 190 B

1234567891011121314151617
  1. #ifndef COMPILER_H
  2. #define COMPILER_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include "Error.h"
  7. #include "vm/ByteCode.h"
  8. ByteCode* cCompile(Error* e);
  9. #ifdef __cplusplus
  10. }
  11. #endif
  12. #endif