Skip to content

Commit cbad54a

Browse files
gzzhanghaoyyx990803
authored andcommitted
fix(compiler): set end location for incomplete elements (#9598)
1 parent 1574ade commit cbad54a

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

src/compiler/parser/html-parser.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ export function parseHTML (html, options) {
279279
) {
280280
options.warn(
281281
`tag <${stack[i].tag}> has no matching end tag.`,
282-
{ start: stack[i].start }
282+
{ start: stack[i].start, end: stack[i].end }
283283
)
284284
}
285285
if (options.end) {

src/compiler/parser/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ export function parse (
210210
shouldDecodeNewlinesForHref: options.shouldDecodeNewlinesForHref,
211211
shouldKeepComment: options.comments,
212212
outputSourceRange: options.outputSourceRange,
213-
start (tag, attrs, unary, start) {
213+
start (tag, attrs, unary, start, end) {
214214
// check namespace.
215215
// inherit parent ns if there is one
216216
const ns = (currentParent && currentParent.ns) || platformGetTagNamespace(tag)
@@ -229,6 +229,7 @@ export function parse (
229229
if (process.env.NODE_ENV !== 'production') {
230230
if (options.outputSourceRange) {
231231
element.start = start
232+
element.end = end
232233
element.rawAttrsMap = element.attrsList.reduce((cumulated, attr) => {
233234
cumulated[attr.name] = attr
234235
return cumulated

test/unit/modules/compiler/compiler-options.spec.js

+5
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,11 @@ describe('compile options', () => {
140140
expect(compiled.errors[0].end).toBe(17)
141141
expect(compiled.errors[1].start).toBe(18)
142142
expect(compiled.errors[1].end).toBe(29)
143+
144+
compiled = compile('<div><span></div>', { outputSourceRange: true })
145+
expect(compiled.errors.length).toBe(1)
146+
expect(compiled.errors[0].start).toBe(5)
147+
expect(compiled.errors[0].end).toBe(11)
143148
})
144149

145150
it('should collect source range for binding keys', () => {

0 commit comments

Comments
 (0)