0
0

🐛 add missing this. to error_argument() calls

This commit is contained in:
DrMaxNix 2022-10-02 17:23:36 +02:00
parent f02344c745
commit 12104f6d65

View File

@ -320,7 +320,7 @@ class Juicescript_runner {
// value // value
if(type === Juicescript.argument_type.VALUE){ if(type === Juicescript.argument_type.VALUE){
if(![Juicescript.argument_type.VARIABLE, Juicescript.argument_type.LITERAL].includes(actual_type)){ if(![Juicescript.argument_type.VARIABLE, Juicescript.argument_type.LITERAL].includes(actual_type)){
error_argument(number, "expected " + Juicescript.argument_type.name(type) + ", but got " + Juicescript.argument_type.name(actual_type)); this.error_argument(number, "expected " + Juicescript.argument_type.name(type) + ", but got " + Juicescript.argument_type.name(actual_type));
} }
return; return;
} }
@ -328,7 +328,7 @@ class Juicescript_runner {
// COMPARE AGAINST PARSABLE TYPES // // COMPARE AGAINST PARSABLE TYPES //
if(actual_type !== type){ if(actual_type !== type){
error_argument(number, "expected " + Juicescript.argument_type.name(type) + ", but got " + Juicescript.argument_type.name(actual_type)); this.error_argument(number, "expected " + Juicescript.argument_type.name(type) + ", but got " + Juicescript.argument_type.name(actual_type));
} }
} }