refactor: better fix for ec6abe8d

This commit is contained in:
Evan You 2021-07-19 19:23:44 -04:00
parent bb7b130b0b
commit 7e75b4105a

View File

@ -96,8 +96,8 @@ export interface ParserContext {
offset: number offset: number
line: number line: number
column: number column: number
inPre: number // HTML <pre> tag, preserve whitespaces inPre: boolean // HTML <pre> tag, preserve whitespaces
inVPre: number // v-pre, do not process directives and interpolations inVPre: boolean // v-pre, do not process directives and interpolations
onWarn: NonNullable<ErrorHandlingOptions['onWarn']> onWarn: NonNullable<ErrorHandlingOptions['onWarn']>
} }
@ -134,8 +134,8 @@ function createParserContext(
offset: 0, offset: 0,
originalSource: content, originalSource: content,
source: content, source: content,
inPre: 0, inPre: false,
inVPre: 0, inVPre: false,
onWarn: options.onWarn onWarn: options.onWarn
} }
} }
@ -427,8 +427,8 @@ function parseElement(
if (element.isSelfClosing || context.options.isVoidTag(element.tag)) { if (element.isSelfClosing || context.options.isVoidTag(element.tag)) {
// #4030 self-closing <pre> tag // #4030 self-closing <pre> tag
if (context.options.isPreTag(element.tag)) { if (isPreBoundary) {
context.inPre-- context.inPre = false
} }
return element return element
} }
@ -479,10 +479,10 @@ function parseElement(
element.loc = getSelection(context, element.loc.start) element.loc = getSelection(context, element.loc.start)
if (isPreBoundary) { if (isPreBoundary) {
context.inPre-- context.inPre = false
} }
if (isVPreBoundary) { if (isVPreBoundary) {
context.inVPre-- context.inVPre = false
} }
return element return element
} }
@ -535,7 +535,7 @@ function parseTag(
// check <pre> tag // check <pre> tag
if (context.options.isPreTag(tag)) { if (context.options.isPreTag(tag)) {
context.inPre++ context.inPre = true
} }
// Attributes. // Attributes.
@ -547,7 +547,7 @@ function parseTag(
!context.inVPre && !context.inVPre &&
props.some(p => p.type === NodeTypes.DIRECTIVE && p.name === 'pre') props.some(p => p.type === NodeTypes.DIRECTIVE && p.name === 'pre')
) { ) {
context.inVPre++ context.inVPre = true
// reset context // reset context
extend(context, cursor) extend(context, cursor)
context.source = currentSource context.source = currentSource