|
@@ -89,8 +89,9 @@ export class Interpreter {
|
|
PopRoot() {
|
|
PopRoot() {
|
|
this.stack.pop();
|
|
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);
|
|
let to_add = this.stack.splice(this.stack.length - many);
|
|
for (let i = 0; i < many; i++) {
|
|
for (let i = 0; i < many; i++) {
|
|
root.appendChild(to_add[i]);
|
|
root.appendChild(to_add[i]);
|