mirror of
https://github.com/captbaritone/webamp.git
synced 2026-08-03 23:43:28 +00:00
Remove unused arg
This commit is contained in:
parent
219c4d79dd
commit
e1305819bd
1 changed files with 2 additions and 1 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue