Files
Noja/tests/compiler/func/Testcase_011_005.noja-test

24 lines
287 B
Plaintext

@type [compiler]
@source
fun nop(a: None) {
return a;
}
@bytecode
PUSHFUN fun, 1, "nop";
JUMP end;
fun:
PUSHVAR "None";
CHECKTYPE 0, "a";
ASS "a";
POP 1;
PUSHVAR "a";
RETURN 1;
RETURN 0;
end:
ASS "nop";
POP 1;
EXIT;