Add missing push_table to Kym compiler
This commit is contained in:
parent
c64767ba59
commit
2331d99bc9
|
@ -509,6 +509,9 @@ const Parser = struct {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
try self.chunk.emit_opcode(.push_table);
|
||||||
|
try self.chunk.emit_operand(field_count);
|
||||||
|
|
||||||
if (is_call_argument) {
|
if (is_call_argument) {
|
||||||
try self.chunk.emit_opcode(.call);
|
try self.chunk.emit_opcode(.call);
|
||||||
try self.chunk.emit_operand(1);
|
try self.chunk.emit_operand(1);
|
||||||
|
|
Loading…
Reference in New Issue