(arg)
| 10618 | |
| 10619 | */ |
| 10620 | const StructCtor = function StructCtor(arg){ |
| 10621 | //console.warn("opt",opt,arguments[0]); |
| 10622 | if(!(this instanceof StructCtor)){ |
| 10623 | toss("The",structName,"constructor may only be called via 'new'."); |
| 10624 | } |
| 10625 | __allocStruct(StructCtor, this, ...arguments); |
| 10626 | }; |
| 10627 | const self = this; |
| 10628 | /** |
| 10629 | "Convert" struct description x to a struct description, if |
nothing calls this directly
no test coverage detected