diff --git a/lib/index.qwik.cjs b/lib/index.qwik.cjs index 80040dd..58e782d 100644 --- a/lib/index.qwik.cjs +++ b/lib/index.qwik.cjs @@ -171,35 +171,27 @@ function qwikJsonDebug(document2, qwikJson, derivedFns) { } class number_ extends Base { constructor(__id, __value) { - super(__id); - this.__id = __id; - this.__value = __value; + super(__id), this.__id = __id, this.__value = __value; } } class boolean_ extends Base { constructor(__id, __value) { - super(__id); - this.__id = __id; - this.__value = __value; + super(__id), this.__id = __id, this.__value = __value; } } class string_ extends Base { constructor(__id, __value) { - super(__id); - this.__id = __id; - this.__value = __value; + super(__id), this.__id = __id, this.__value = __value; } } class undefined_ extends Base { constructor(__id) { - super(__id); - this.__id = __id; + super(__id), this.__id = __id; } } class Object_ extends Base { constructor(__id) { - super(__id); - this.__id = __id; + super(__id), this.__id = __id; } } class Array_ extends Array { @@ -211,11 +203,7 @@ function qwikJsonDebug(document2, qwikJson, derivedFns) { } class Task extends Base { constructor(__id, flags, index, obj) { - super(__id); - this.__id = __id; - this.flags = flags; - this.index = index; - this.obj = obj; + super(__id), this.__id = __id, this.flags = flags, this.index = index, this.obj = obj; } } class Listener { @@ -245,34 +233,22 @@ function qwikJsonDebug(document2, qwikJson, derivedFns) { } class Component extends Base { constructor(__id, qrl) { - super(__id); - this.__id = __id; - this.qrl = qrl; + super(__id), this.__id = __id, this.qrl = qrl; } } class SignalWrapper extends Base { constructor(__id, id, prop) { - super(__id); - this.__id = __id; - this.id = id; - this.prop = prop; + super(__id), this.__id = __id, this.id = id, this.prop = prop; } } class DerivedSignal extends Base { constructor(__id, fn, args) { - super(__id); - this.__id = __id; - this.fn = fn; - this.args = args; + super(__id), this.__id = __id, this.fn = fn, this.args = args; } } class QRL extends Base { constructor(__id, chunk, symbol, capture) { - super(__id); - this.__id = __id; - this.chunk = chunk; - this.symbol = symbol; - this.capture = capture; + super(__id), this.__id = __id, this.chunk = chunk, this.symbol = symbol, this.capture = capture; } } const nodeMap = getNodeMap(); diff --git a/lib/index.qwik.mjs b/lib/index.qwik.mjs index 7e0e352..3f38122 100644 --- a/lib/index.qwik.mjs +++ b/lib/index.qwik.mjs @@ -169,35 +169,27 @@ function qwikJsonDebug(document2, qwikJson, derivedFns) { } class number_ extends Base { constructor(__id, __value) { - super(__id); - this.__id = __id; - this.__value = __value; + super(__id), this.__id = __id, this.__value = __value; } } class boolean_ extends Base { constructor(__id, __value) { - super(__id); - this.__id = __id; - this.__value = __value; + super(__id), this.__id = __id, this.__value = __value; } } class string_ extends Base { constructor(__id, __value) { - super(__id); - this.__id = __id; - this.__value = __value; + super(__id), this.__id = __id, this.__value = __value; } } class undefined_ extends Base { constructor(__id) { - super(__id); - this.__id = __id; + super(__id), this.__id = __id; } } class Object_ extends Base { constructor(__id) { - super(__id); - this.__id = __id; + super(__id), this.__id = __id; } } class Array_ extends Array { @@ -209,11 +201,7 @@ function qwikJsonDebug(document2, qwikJson, derivedFns) { } class Task extends Base { constructor(__id, flags, index, obj) { - super(__id); - this.__id = __id; - this.flags = flags; - this.index = index; - this.obj = obj; + super(__id), this.__id = __id, this.flags = flags, this.index = index, this.obj = obj; } } class Listener { @@ -243,34 +231,22 @@ function qwikJsonDebug(document2, qwikJson, derivedFns) { } class Component extends Base { constructor(__id, qrl) { - super(__id); - this.__id = __id; - this.qrl = qrl; + super(__id), this.__id = __id, this.qrl = qrl; } } class SignalWrapper extends Base { constructor(__id, id, prop) { - super(__id); - this.__id = __id; - this.id = id; - this.prop = prop; + super(__id), this.__id = __id, this.id = id, this.prop = prop; } } class DerivedSignal extends Base { constructor(__id, fn, args) { - super(__id); - this.__id = __id; - this.fn = fn; - this.args = args; + super(__id), this.__id = __id, this.fn = fn, this.args = args; } } class QRL extends Base { constructor(__id, chunk, symbol, capture) { - super(__id); - this.__id = __id; - this.chunk = chunk; - this.symbol = symbol; - this.capture = capture; + super(__id), this.__id = __id, this.chunk = chunk, this.symbol = symbol, this.capture = capture; } } const nodeMap = getNodeMap();