Skip to content

Commit

Permalink
c322230 Merge pull request #7108 from QwikDev/update-rust
Browse files Browse the repository at this point in the history
  • Loading branch information
wmertens committed Dec 4, 2024
1 parent ecac9d9 commit b9dd6d6
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 68 deletions.
44 changes: 10 additions & 34 deletions lib/index.qwik.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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 {
Expand Down Expand Up @@ -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();
Expand Down
44 changes: 10 additions & 34 deletions lib/index.qwik.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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 {
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit b9dd6d6

Please sign in to comment.