@kontur.candy/generator 4.248.0-lazy-loading.23 → 4.248.0-lazy-loading.24
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/index.js +4 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -133879,6 +133879,10 @@ class SwitchConverter extends _SugarNodeConverter__WEBPACK_IMPORTED_MODULE_2__.S
|
|
|
133879
133879
|
const node = this.getCurrentNodeAs(_SwitchNode__WEBPACK_IMPORTED_MODULE_9__.SwitchNode);
|
|
133880
133880
|
yield* node.cases;
|
|
133881
133881
|
|
|
133882
|
+
for (const caseNode of node.cases) {
|
|
133883
|
+
yield* caseNode.children;
|
|
133884
|
+
}
|
|
133885
|
+
|
|
133882
133886
|
if (node.default != undefined) {
|
|
133883
133887
|
yield node.default;
|
|
133884
133888
|
}
|