several DS fixes (logging works now)

This commit is contained in:
Kevin Jahns
2017-10-26 16:22:35 +02:00
parent e8170a09a7
commit e6b5e258fb
7 changed files with 34 additions and 41 deletions

View File

@@ -273,7 +273,7 @@ export default class Tree {
var child = d.left || d.right
if (child === null) {
isFakeChild = true
child = new N({id: 0})
child = new N(null)
child.blacken()
d.right = child
} else {