@@ -98,14 +98,18 @@ export function parse (
98
98
}
99
99
}
100
100
101
- function endPre ( element ) {
101
+ function closeElement ( element ) {
102
102
// check pre state
103
103
if ( element . pre ) {
104
104
inVPre = false
105
105
}
106
106
if ( platformIsPreTag ( element . tag ) ) {
107
107
inPre = false
108
108
}
109
+ // apply post-transforms
110
+ for ( let i = 0 ; i < postTransforms . length ; i ++ ) {
111
+ postTransforms [ i ] ( element , options )
112
+ }
109
113
}
110
114
111
115
parseHTML ( template , {
@@ -219,7 +223,7 @@ export function parse (
219
223
currentParent = element
220
224
stack . push ( element )
221
225
} else {
222
- endPre ( element )
226
+ closeElement ( element )
223
227
}
224
228
} ,
225
229
@@ -233,12 +237,7 @@ export function parse (
233
237
// pop stack
234
238
stack . length -= 1
235
239
currentParent = stack [ stack . length - 1 ]
236
- endPre ( element )
237
-
238
- // apply post-transforms
239
- for ( let i = 0 ; i < postTransforms . length ; i ++ ) {
240
- postTransforms [ i ] ( element , options )
241
- }
240
+ closeElement ( element )
242
241
} ,
243
242
244
243
chars ( text : string ) {
@@ -270,11 +269,12 @@ export function parse (
270
269
// only preserve whitespace if its not right after a starting tag
271
270
: preserveWhitespace && children . length ? ' ' : ''
272
271
if ( text ) {
273
- let expression
274
- if ( ! inVPre && text !== ' ' && ( expression = parseText ( text , delimiters ) ) ) {
272
+ let res
273
+ if ( ! inVPre && text !== ' ' && ( res = parseText ( text , delimiters ) ) ) {
275
274
children . push ( {
276
275
type : 2 ,
277
- expression,
276
+ expression : res . expression ,
277
+ tokens : res . tokens ,
278
278
text
279
279
} )
280
280
} else if ( text !== ' ' || ! children . length || children [ children . length - 1 ] . text !== ' ' ) {
@@ -571,8 +571,8 @@ function processAttrs (el) {
571
571
} else {
572
572
// literal attribute
573
573
if ( process . env . NODE_ENV !== 'production' ) {
574
- const expression = parseText ( value , delimiters )
575
- if ( expression ) {
574
+ const res = parseText ( value , delimiters )
575
+ if ( res ) {
576
576
warn (
577
577
`${ name } ="${ value } ": ` +
578
578
'Interpolation inside attributes has been removed. ' +
0 commit comments