Commit f1270274 authored by Guido van Rossum's avatar Guido van Rossum

Added opcodes for classes.

parent cc398d1c
...@@ -37,12 +37,14 @@ ...@@ -37,12 +37,14 @@
#define BREAK_LOOP 80 #define BREAK_LOOP 80
#define RAISE_EXCEPTION 81 #define RAISE_EXCEPTION 81
#define LOAD_LOCALS 82
#define RETURN_VALUE 83 #define RETURN_VALUE 83
#define REQUIRE_ARGS 84 #define REQUIRE_ARGS 84
#define REFUSE_ARGS 85 #define REFUSE_ARGS 85
#define BUILD_FUNCTION 86 #define BUILD_FUNCTION 86
#define POP_BLOCK 87 #define POP_BLOCK 87
#define END_FINALLY 88 #define END_FINALLY 88
#define BUILD_CLASS 89
#define HAVE_ARGUMENT 90 /* Opcodes from here have an argument: */ #define HAVE_ARGUMENT 90 /* Opcodes from here have an argument: */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment