improve mem usage by conditional execution of the integration part (step throught the integration if there are conflicting items)

This commit is contained in:
Kevin Jahns
2020-06-09 16:34:07 +02:00
parent 7fb63de8fc
commit 6b0154f046
5 changed files with 129 additions and 96 deletions

View File

@@ -14,7 +14,13 @@ export class AbstractStruct {
constructor (id, length) {
this.id = id
this.length = length
this.deleted = false
}
/**
* @type {boolean}
*/
get deleted () {
throw error.methodUnimplemented()
}
/**