📝 change name of some identifiers. shrink size of main stack.

This commit is contained in:
ValKmjolnir
2022-07-05 18:13:54 +08:00
parent 2bc15697df
commit 82b33ffe4a
3 changed files with 43 additions and 40 deletions
+3 -2
View File
@@ -15,10 +15,11 @@ protected:
const double* num_table;// const numbers, ref from nasal_codegen
const std::string* str_table;// const symbols, ref from nasal_codegen
std::vector<uint32_t> imm; // immediate number
/* main stack */
nasal_ref stack[STACK_DEPTH];
/* garbage collector */
nasal_gc gc;
/* main stack */
nasal_ref stack[STACK_DEPTH];
/* values used for debug */
size_t files_size;