Remove unused arg

This commit is contained in:
Jordan Eldredge 2021-05-30 14:35:47 -07:00
parent 219c4d79dd
commit e1305819bd

View file

@ -11,9 +11,10 @@ function coerceTypes(var1, var2, val1 /* val2 */) {
return val1;
}
export function interpret(start, program, stack = []) {
export function interpret(start, program) {
const { commands, methods, variables, classes } = program;
const stack = [];
const callStack = [];
function popStackValue() {