made all tests passing

This commit is contained in:
Dolan Miu
2016-04-09 04:53:42 +01:00
parent aed59754cc
commit 84610bd72f
9 changed files with 81 additions and 20 deletions

View File

@ -14,6 +14,7 @@ export class Body implements XmlComponent {
}
push(component: XmlComponent) {
this.body.splice(this.body.length - 1, 0, component);
//this.body.splice(this.body.length - 1, 0, component);
this.body.push(component);
}
}