mirror of
https://github.com/zekexiao/pocketlang.git
synced 2025-02-06 04:37:47 +08:00
23 lines
544 B
C
23 lines
544 B
C
/*
|
|
* Copyright (c) 2020-2022 Thakee Nathees
|
|
* Copyright (c) 2021-2022 Pocketlang Contributors
|
|
* Distributed Under The MIT License
|
|
*/
|
|
|
|
#ifndef PK_DEBUG_H
|
|
#define PK_DEBUG_H
|
|
|
|
#include "pk_internal.h"
|
|
#include "pk_value.h"
|
|
|
|
// Dump opcodes of the given function to the stdout.
|
|
void dumpFunctionCode(PKVM* vm, Function* func);
|
|
|
|
// Dump the all the global values of the script to the stdout.
|
|
void dumpGlobalValues(PKVM* vm);
|
|
|
|
// Dump the current (top most) stack call frame to the stdout.
|
|
void dumpStackFrame(PKVM* vm);
|
|
|
|
#endif // PK_DEBUG_H
|