You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
286 B
JavaScript

function Debug(){
this.res_count = 0;
this.alloc = function(){
this.res_count++;
};
this.free = function(){
this.res_count--;
};
this.dump = function(){
console.log(`number of resources: ${this.res_count}`);
}
};
export {Debug};