ByteCodePrinter.h 183 B

12345678910111213141516
  1. #ifndef BYTECODEPRINTER_H
  2. #define BYTECODEPRINTER_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include "vm/ByteCode.h"
  7. void btPrint(ByteCode* bt);
  8. #ifdef __cplusplus
  9. }
  10. #endif
  11. #endif