|
|
@@ -1,5 +1,22 @@
|
|
|
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
|
|
+exports[`compiler: children transform > anchor insertion in middle 1`] = `
|
|
|
+"import { child as _child, next as _next, setInsertionState as _setInsertionState, createIf as _createIf, template as _template } from 'vue';
|
|
|
+const t0 = _template("<div></div>")
|
|
|
+const t1 = _template("<div><div></div><!><div></div></div>", true)
|
|
|
+
|
|
|
+export function render(_ctx) {
|
|
|
+ const n4 = t1()
|
|
|
+ const n3 = _next(_child(n4))
|
|
|
+ _setInsertionState(n4, n3)
|
|
|
+ const n0 = _createIf(() => (1), () => {
|
|
|
+ const n2 = t0()
|
|
|
+ return n2
|
|
|
+ }, null, true)
|
|
|
+ return n4
|
|
|
+}"
|
|
|
+`;
|
|
|
+
|
|
|
exports[`compiler: children transform > children & sibling references 1`] = `
|
|
|
"import { child as _child, next as _next, toDisplayString as _toDisplayString, setText as _setText, renderEffect as _renderEffect, template as _template } from 'vue';
|
|
|
const t0 = _template("<div><p> </p> <p> </p></div>", true)
|