This commit is contained in:
Jordi Baylina
2020-01-30 07:25:48 +01:00
parent a8d597d8c5
commit 111c91c70d
3 changed files with 74 additions and 13 deletions

View File

@@ -1,4 +1,5 @@
const bigInt = require("big-integer");
const BigArray = require("./bigarray.js");
class TableName {
@@ -103,11 +104,11 @@ module.exports = class Ctx {
this.COUNTED = 0x20;
this.scopes = [{}];
this.signals = [];
this.signals = new BigArray();
this.currentComponent= -1;
this.constraints= [];
this.components= [];
this.constraints= new BigArray();
this.components= new BigArray();
this.templates= {};
this.functions= {};
this.functionParams= {};