fix(bytecode): comment

This commit is contained in:
2025-05-12 14:37:20 +08:00
parent 2c73893757
commit 0274d95f48

View File

@@ -19,7 +19,7 @@ pub enum OpCode {
/// force TOS to value /// force TOS to value
ForceValue, ForceValue,
/// [ .. func args @ .. ] consume (`arity` + 2) elements, call `func` with args` of length `arity` /// [ .. func args @ .. ] consume (`arity` + 1) elements, call `func` with args` of length `arity`
/// Example: __add 1 2 => [ LookUp("__add") Const(1) Const(2) Call(2) ] /// Example: __add 1 2 => [ LookUp("__add") Const(1) Const(2) Call(2) ]
Call { arity: usize }, Call { arity: usize },
/// make a function /// make a function