bobe 0.0.50 → 0.0.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bobe.cjs.js +3 -1
- package/dist/bobe.cjs.js.map +1 -1
- package/dist/bobe.compiler.cjs.js +3 -1
- package/dist/bobe.compiler.cjs.js.map +1 -1
- package/dist/bobe.compiler.esm.js +3 -1
- package/dist/bobe.compiler.esm.js.map +1 -1
- package/dist/bobe.esm.js +3 -1
- package/dist/bobe.esm.js.map +1 -1
- package/dist/index.umd.js +3 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +3 -3
|
@@ -2050,7 +2050,9 @@ class Interpreter {
|
|
|
2050
2050
|
const render = ComponentOrRender;
|
|
2051
2051
|
const boundStore = render.boundStore;
|
|
2052
2052
|
child = deepSignal({}, getPulling(), true);
|
|
2053
|
-
|
|
2053
|
+
if (boundStore) {
|
|
2054
|
+
Object.setPrototypeOf(child, boundStore);
|
|
2055
|
+
}
|
|
2054
2056
|
tokenizer = render(true);
|
|
2055
2057
|
}
|
|
2056
2058
|
const node = {
|