Fix sfall opcode comments
This commit is contained in:
parent
fe0d767521
commit
681b7c388b
|
@ -536,7 +536,7 @@ static void opGetMessage(Program* program)
|
||||||
programStackPushString(program, text);
|
programStackPushString(program, text);
|
||||||
}
|
}
|
||||||
|
|
||||||
// get_array_key
|
// array_key
|
||||||
static void opGetArrayKey(Program* program)
|
static void opGetArrayKey(Program* program)
|
||||||
{
|
{
|
||||||
auto index = programStackPopInteger(program);
|
auto index = programStackPopInteger(program);
|
||||||
|
@ -597,7 +597,7 @@ static void opStackArray(Program* program)
|
||||||
programStackPushInteger(program, returnValue);
|
programStackPushInteger(program, returnValue);
|
||||||
}
|
}
|
||||||
|
|
||||||
// scan array
|
// scan_array
|
||||||
static void opScanArray(Program* program)
|
static void opScanArray(Program* program)
|
||||||
{
|
{
|
||||||
auto value = programStackPopValue(program);
|
auto value = programStackPopValue(program);
|
||||||
|
|
Loading…
Reference in New Issue