fix first y-array test

This commit is contained in:
Kevin Jahns
2017-10-16 04:53:12 +02:00
parent 4eec8ecdd3
commit 1311c7a0d8
28 changed files with 489 additions and 284 deletions

View File

@@ -5,6 +5,11 @@ export default class Type extends Item {
super()
this._map = new Map()
this._start = null
this._y = null
}
_integrate (y) {
super._integrate(y)
this._y = y
}
_delete (y) {
super._delete(y)