File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -48,12 +48,15 @@ export function parse (
48
48
options : CompilerOptions
49
49
) : ASTElement | void {
50
50
warn = options . warn || baseWarn
51
- platformGetTagNamespace = options . getTagNamespace || no
52
- platformMustUseProp = options . mustUseProp || no
51
+
53
52
platformIsPreTag = options . isPreTag || no
54
- preTransforms = pluckModuleFunction ( options . modules , 'preTransformNode' )
53
+ platformMustUseProp = options . mustUseProp || no
54
+ platformGetTagNamespace = options . getTagNamespace || no
55
+
55
56
transforms = pluckModuleFunction ( options . modules , 'transformNode' )
57
+ preTransforms = pluckModuleFunction ( options . modules , 'preTransformNode' )
56
58
postTransforms = pluckModuleFunction ( options . modules , 'postTransformNode' )
59
+
57
60
delimiters = options . delimiters
58
61
59
62
const stack = [ ]
You can’t perform that action at this time.
0 commit comments