@@ -40,6 +40,22 @@ let platformIsPreTag
40
40
let platformMustUseProp
41
41
let platformGetTagNamespace
42
42
43
+ type Attr = { name : string ; value: string }
44
+ export function createASTElement (
45
+ tag : string ,
46
+ attrs : Array < Attr > ,
47
+ parent : ASTElement | void
48
+ ) : ASTElement {
49
+ return {
50
+ type : 1 ,
51
+ tag,
52
+ attrsList : attrs ,
53
+ attrsMap : makeAttrsMap ( attrs ) ,
54
+ parent,
55
+ children : [ ]
56
+ }
57
+ }
58
+
43
59
/**
44
60
* Convert HTML string to AST.
45
61
*/
@@ -102,14 +118,7 @@ export function parse (
102
118
attrs = guardIESVGBug ( attrs )
103
119
}
104
120
105
- const element : ASTElement = {
106
- type : 1 ,
107
- tag,
108
- attrsList : attrs ,
109
- attrsMap : makeAttrsMap ( attrs ) ,
110
- parent : currentParent ,
111
- children : [ ]
112
- }
121
+ let element : ASTElement = createASTElement ( tag , attrs , currentParent )
113
122
if ( ns ) {
114
123
element . ns = ns
115
124
}
@@ -125,7 +134,7 @@ export function parse (
125
134
126
135
// apply pre-transforms
127
136
for ( let i = 0 ; i < preTransforms . length ; i ++ ) {
128
- preTransforms [ i ] ( element , options )
137
+ element = preTransforms [ i ] ( element , options ) || element
129
138
}
130
139
131
140
if ( ! inVPre ) {
@@ -139,23 +148,13 @@ export function parse (
139
148
}
140
149
if ( inVPre ) {
141
150
processRawAttrs ( element )
142
- } else {
151
+ } else if ( ! element . processed ) {
152
+ // structural directives
143
153
processFor ( element )
144
154
processIf ( element )
145
155
processOnce ( element )
146
- processKey ( element )
147
-
148
- // determine whether this is a plain element after
149
- // removing structural attributes
150
- element . plain = ! element . key && ! attrs . length
151
-
152
- processRef ( element )
153
- processSlot ( element )
154
- processComponent ( element )
155
- for ( let i = 0 ; i < transforms . length ; i ++ ) {
156
- transforms [ i ] ( element , options )
157
- }
158
- processAttrs ( element )
156
+ // element-scope stuff
157
+ processElement ( element , options )
159
158
}
160
159
161
160
function checkRootConstraints ( el ) {
@@ -309,6 +308,22 @@ function processRawAttrs (el) {
309
308
}
310
309
}
311
310
311
+ export function processElement ( element : ASTElement , options : CompilerOptions ) {
312
+ processKey ( element )
313
+
314
+ // determine whether this is a plain element after
315
+ // removing structural attributes
316
+ element . plain = ! element . key && ! element . attrsList . length
317
+
318
+ processRef ( element )
319
+ processSlot ( element )
320
+ processComponent ( element )
321
+ for ( let i = 0 ; i < transforms . length ; i ++ ) {
322
+ element = transforms [ i ] ( element , options ) || element
323
+ }
324
+ processAttrs ( element )
325
+ }
326
+
312
327
function processKey ( el ) {
313
328
const exp = getBindingAttr ( el , 'key' )
314
329
if ( exp ) {
@@ -327,7 +342,7 @@ function processRef (el) {
327
342
}
328
343
}
329
344
330
- function processFor ( el ) {
345
+ export function processFor ( el : ASTElement ) {
331
346
let exp
332
347
if ( ( exp = getAndRemoveAttr ( el , 'v-for' ) ) ) {
333
348
const inMatch = exp . match ( forAliasRE )
@@ -403,7 +418,7 @@ function findPrevElement (children: Array<any>): ASTElement | void {
403
418
}
404
419
}
405
420
406
- function addIfCondition ( el , condition ) {
421
+ export function addIfCondition ( el : ASTElement , condition : ASTIfCondition ) {
407
422
if ( ! el . ifConditions ) {
408
423
el . ifConditions = [ ]
409
424
}
0 commit comments