fix: recursion.
This commit is contained in:
parent
dd3b1b0d74
commit
2b7ba01fd2
|
@ -62,7 +62,7 @@ export class NonameAssembly extends Array {
|
|||
// if (typeof name !== "string" || name.length === 0) throw new Error("you can't add a anonymous function to assembly.")
|
||||
|
||||
if (typeof name !== "string" || name.length === 0) {
|
||||
Array.prototype.add.call(this, content)
|
||||
if (!this.includes(content)) Array.prototype.push.call(this, content)
|
||||
}
|
||||
else if (!this.has(name)) {
|
||||
this.#record.set(name, this.length)
|
||||
|
|
Loading…
Reference in New Issue