Skip to content

Commit 6fab855

Browse files
committed
feat(compiler-sfc): support passing template parsing options when parsing sfc
- This is released in a patch because it is an relatively internal API but required to properly fix vitejs/vite-plugin-vue#322 - `parseExpressions` is now deprecated because it can be passed using original template parsing options (`prefixIdentifiers`)
1 parent a9be936 commit 6fab855

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

packages/compiler-sfc/__tests__/parse.spec.ts

+20-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
import { parse } from '../src'
2-
import { baseCompile, createRoot } from '@vue/compiler-core'
2+
import {
3+
ElementTypes,
4+
NodeTypes,
5+
baseCompile,
6+
createRoot,
7+
} from '@vue/compiler-core'
38
import { SourceMapConsumer } from 'source-map-js'
49

510
describe('compiler:sfc', () => {
@@ -350,6 +355,20 @@ h1 { color: red }
350355
expect(descriptor.customBlocks[0].content).toBe(` <-& `)
351356
})
352357

358+
test('should accept parser options', () => {
359+
const { errors, descriptor } = parse(`<template><hello/></template>`, {
360+
templateParseOptions: {
361+
isCustomElement: t => t === 'hello',
362+
},
363+
})
364+
expect(errors.length).toBe(0)
365+
expect(descriptor.template!.ast!.children[0]).toMatchObject({
366+
type: NodeTypes.ELEMENT,
367+
tag: 'hello',
368+
tagType: ElementTypes.ELEMENT,
369+
})
370+
})
371+
353372
describe('warnings', () => {
354373
function assertWarning(errors: Error[], msg: string) {
355374
expect(errors.some(e => e.message.match(msg))).toBe(true)

packages/compiler-sfc/src/parse.ts

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import {
33
type CompilerError,
44
type ElementNode,
55
NodeTypes,
6+
type ParserOptions,
67
type RootNode,
78
type SourceLocation,
89
createRoot,
@@ -24,6 +25,11 @@ export interface SFCParseOptions {
2425
pad?: boolean | 'line' | 'space'
2526
ignoreEmpty?: boolean
2627
compiler?: TemplateCompiler
28+
templateParseOptions?: ParserOptions
29+
/**
30+
* TODO remove in 3.5
31+
* @deprecated use `templateParseOptions: { prefixIdentifiers: false }` instead
32+
*/
2733
parseExpressions?: boolean
2834
}
2935

@@ -106,6 +112,7 @@ export function parse(
106112
pad = false,
107113
ignoreEmpty = true,
108114
compiler = CompilerDOM,
115+
templateParseOptions = {},
109116
parseExpressions = true,
110117
}: SFCParseOptions = {},
111118
): SFCParseResult {
@@ -133,6 +140,7 @@ export function parse(
133140
const ast = compiler.parse(source, {
134141
parseMode: 'sfc',
135142
prefixIdentifiers: parseExpressions,
143+
...templateParseOptions,
136144
onError: e => {
137145
errors.push(e)
138146
},

0 commit comments

Comments
 (0)