Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
Василий Толстов 2021-07-30 14:13:18 +03:00
parent b007fe5054
commit 18fad18163

View File

@ -30,7 +30,7 @@ type Compiler interface {
type op struct {
// code is the opcode of the operation
code utilities.OpCode
code OpCode
// str is a string operand of the code.
// num is ignored if str is not empty.
@ -67,7 +67,7 @@ func (v variable) compile() []op {
ops = append(ops, s.compile()...)
}
ops = append(ops, op{
code: utilities.OpConcatN,
code: OpConcatN,
num: len(v.segments),
}, op{
code: OpCapture,