This commit is contained in:
blueloveTH 2023-05-20 18:56:57 +08:00
parent 52e6fdb860
commit 994290f1ea
2 changed files with 1 additions and 2 deletions

View File

@ -7,7 +7,7 @@ with open("src/opcodes.h", "rt", encoding='utf-8') as f:
pipeline = [ pipeline = [
["common.h", "memory.h", "vector.h", "str.h", "tuplelist.h", "namedict.h", "error.h", "lexer.h"], ["common.h", "memory.h", "vector.h", "str.h", "tuplelist.h", "namedict.h", "error.h", "lexer.h"],
["obj.h", "codeobject.h", "frame.h"], ["obj.h", "dict.h", "codeobject.h", "frame.h"],
["gc.h", "vm.h", "ceval.h", "expr.h", "compiler.h", "repl.h"], ["gc.h", "vm.h", "ceval.h", "expr.h", "compiler.h", "repl.h"],
["_generated.h", "iter.h", "base64.h", "cffi.h", "linalg.h", "easing.h", "requests.h", "io.h", "pocketpy.h"] ["_generated.h", "iter.h", "base64.h", "cffi.h", "linalg.h", "easing.h", "requests.h", "io.h", "pocketpy.h"]
] ]

View File

@ -2,7 +2,6 @@
#include "ceval.h" #include "ceval.h"
#include "compiler.h" #include "compiler.h"
#include "dict.h"
#include "obj.h" #include "obj.h"
#include "repl.h" #include "repl.h"
#include "iter.h" #include "iter.h"