@@ -46,9 +46,9 @@ impl Bytecode {
46
46
Self :: PushField ( _) => "PUSH_FIELD" ,
47
47
Self :: PushBlock ( _) => "PUSH_BLOCK" ,
48
48
Self :: PushConstant ( _) => "PUSH_CONSTANT" ,
49
- Self :: PushConstant0 => "PUSH_CONSTANT 0 " ,
50
- Self :: PushConstant1 => "PUSH_CONSTANT 1 " ,
51
- Self :: PushConstant2 => "PUSH_CONSTANT 2 " ,
49
+ Self :: PushConstant0 => "PUSH_CONSTANT_0 " ,
50
+ Self :: PushConstant1 => "PUSH_CONSTANT_1 " ,
51
+ Self :: PushConstant2 => "PUSH_CONSTANT_2 " ,
52
52
Self :: PushGlobal ( _) => "PUSH_GLOBAL" ,
53
53
Self :: Push0 => "PUSH_0" ,
54
54
Self :: Push1 => "PUSH_1" ,
@@ -57,14 +57,14 @@ impl Bytecode {
57
57
Self :: PopLocal ( _, _) => "POP_LOCAL" ,
58
58
Self :: PopArgument ( _, _) => "POP_ARGUMENT" ,
59
59
Self :: PopField ( _) => "POP_FIELD" ,
60
- Self :: Send1 ( _) => "SEND 1 " ,
61
- Self :: Send2 ( _) => "SEND 2 " ,
62
- Self :: Send3 ( _) => "SEND 3 " ,
63
- Self :: SendN ( _) => "SEND N " ,
64
- Self :: SuperSend1 ( _) => "SUPER_SEND 1 " ,
65
- Self :: SuperSend2 ( _) => "SUPER_SEND 2 " ,
66
- Self :: SuperSend3 ( _) => "SUPER_SEND 3 " ,
67
- Self :: SuperSendN ( _) => "SUPER_SEND N " ,
60
+ Self :: Send1 ( _) => "SEND_1 " ,
61
+ Self :: Send2 ( _) => "SEND_2 " ,
62
+ Self :: Send3 ( _) => "SEND_3 " ,
63
+ Self :: SendN ( _) => "SEND_N " ,
64
+ Self :: SuperSend1 ( _) => "SUPER_SEND_1 " ,
65
+ Self :: SuperSend2 ( _) => "SUPER_SEND_2 " ,
66
+ Self :: SuperSend3 ( _) => "SUPER_SEND_3 " ,
67
+ Self :: SuperSendN ( _) => "SUPER_SEND_N " ,
68
68
Self :: ReturnLocal => "RETURN_LOCAL" ,
69
69
Self :: ReturnNonLocal => "RETURN_NON_LOCAL" ,
70
70
}
@@ -82,9 +82,9 @@ impl Bytecode {
82
82
Self :: PushField ( _) => "PUSH_FIELD " ,
83
83
Self :: PushBlock ( _) => "PUSH_BLOCK " ,
84
84
Self :: PushConstant ( _) => "PUSH_CONSTANT " ,
85
- Self :: PushConstant0 => "PUSH_CONSTANT 0 " ,
86
- Self :: PushConstant1 => "PUSH_CONSTANT 1 " ,
87
- Self :: PushConstant2 => "PUSH_CONSTANT 2 " ,
85
+ Self :: PushConstant0 => "PUSH_CONSTANT_0 " ,
86
+ Self :: PushConstant1 => "PUSH_CONSTANT_1 " ,
87
+ Self :: PushConstant2 => "PUSH_CONSTANT_2 " ,
88
88
Self :: PushGlobal ( _) => "PUSH_GLOBAL " ,
89
89
Self :: Push0 => "PUSH_0 " ,
90
90
Self :: Push1 => "PUSH_1 " ,
@@ -93,14 +93,14 @@ impl Bytecode {
93
93
Self :: PopLocal ( _, _) => "POP_LOCAL " ,
94
94
Self :: PopArgument ( _, _) => "POP_ARGUMENT " ,
95
95
Self :: PopField ( _) => "POP_FIELD " ,
96
- Self :: Send1 ( _) => "SEND 1 " ,
97
- Self :: Send2 ( _) => "SEND 2 " ,
98
- Self :: Send3 ( _) => "SEND 3 " ,
99
- Self :: SendN ( _) => "SEND N " ,
100
- Self :: SuperSend1 ( _) => "SUPER_SEND 1 " ,
101
- Self :: SuperSend2 ( _) => "SUPER_SEND 2 " ,
102
- Self :: SuperSend3 ( _) => "SUPER_SEND 3 " ,
103
- Self :: SuperSendN ( _) => "SUPER_SEND N " ,
96
+ Self :: Send1 ( _) => "SEND_1 " ,
97
+ Self :: Send2 ( _) => "SEND_2 " ,
98
+ Self :: Send3 ( _) => "SEND_3 " ,
99
+ Self :: SendN ( _) => "SEND_N " ,
100
+ Self :: SuperSend1 ( _) => "SUPER_SEND_1 " ,
101
+ Self :: SuperSend2 ( _) => "SUPER_SEND_2 " ,
102
+ Self :: SuperSend3 ( _) => "SUPER_SEND_3 " ,
103
+ Self :: SuperSendN ( _) => "SUPER_SEND_N " ,
104
104
Self :: ReturnLocal => "RETURN_LOCAL " ,
105
105
Self :: ReturnNonLocal => "RETURN_NON_LOCAL" ,
106
106
}
0 commit comments