Compiler.h 135 B

12345678910
  1. #ifndef COMPILER_H
  2. #define COMPILER_H
  3. #include "vm/ByteCode.h"
  4. ByteCode* cCompile();
  5. const char* cGetError();
  6. int cGetLine();
  7. #endif