Skip to content

Commit dd3354c

Browse files
committedNov 8, 2022
fix(compiler-core): fix parsing error on comments between v-if in prod
close #6843
1 parent 64e6d92 commit dd3354c

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed
 

‎packages/compiler-core/__tests__/transforms/vIf.spec.ts

+21
Original file line numberDiff line numberDiff line change
@@ -712,6 +712,27 @@ describe('compiler: v-if', () => {
712712
expect(b1.children[3].type).toBe(NodeTypes.ELEMENT)
713713
expect((b1.children[3] as ElementNode).tag).toBe(`p`)
714714
})
715+
716+
// #6843
717+
test('should parse correctly with comments: true in prod', () => {
718+
__DEV__ = false
719+
parseWithIfTransform(
720+
`
721+
<template v-if="ok">
722+
<!--comment1-->
723+
<div v-if="ok2">
724+
<!--comment2-->
725+
</div>
726+
<!--comment3-->
727+
<b v-else/>
728+
<!--comment4-->
729+
<p/>
730+
</template>
731+
`,
732+
{ comments: true }
733+
)
734+
__DEV__ = true
735+
})
715736
})
716737

717738
test('v-on with v-if', () => {

‎packages/compiler-core/src/transforms/vIf.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,9 @@ export function processIf(
129129
let i = siblings.indexOf(node)
130130
while (i-- >= -1) {
131131
const sibling = siblings[i]
132-
if (__DEV__ && sibling && sibling.type === NodeTypes.COMMENT) {
132+
if (sibling && sibling.type === NodeTypes.COMMENT) {
133133
context.removeNode(sibling)
134-
comments.unshift(sibling)
134+
__DEV__ && comments.unshift(sibling)
135135
continue
136136
}
137137

0 commit comments

Comments
 (0)
Please sign in to comment.