Simplify subclassing

This commit is contained in:
Jeff Parsons 2015-04-01 17:20:26 -07:00 committed by jeffpar
commit a2b06b7626
28 changed files with 579 additions and 607 deletions

View file

@ -50,6 +50,7 @@
function C1PROM(parmsROM)
{
Component.call(this, "C1PROM", parmsROM);
this.abMem = null;
this.abImage = null;
this.cbROM = parmsROM['size'];
@ -70,7 +71,7 @@ function C1PROM(parmsROM)
}
}
Component.subclass(Component, C1PROM);
Component.subclass(C1PROM);
/**
* @this {C1PROM}