fix: dont use id for append

This commit is contained in:
Jonathan Kelley 2022-12-09 16:44:08 -08:00
parent f153cdf61a
commit 1b7fe3fcde

View file

@ -89,8 +89,9 @@ export class Interpreter {
PopRoot() {
this.stack.pop();
}
AppendChildren(id, many) {
let root = this.nodes[id];
AppendChildren(many) {
// let root = this.nodes[id];
let root = this.stack[this.stack.length - 1 - many];
let to_add = this.stack.splice(this.stack.length - many);
for (let i = 0; i < many; i++) {
root.appendChild(to_add[i]);