File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
packages/svelte/src/compiler/phases/3-transform/server Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -46,26 +46,26 @@ import { TitleElement } from './visitors/template/TitleElement.js';
46
46
/** @type {Visitors } */
47
47
const global_visitors = {
48
48
AssignmentExpression,
49
+ CallExpression,
49
50
Identifier,
50
- UpdateExpression,
51
- CallExpression
51
+ UpdateExpression
52
52
} ;
53
53
54
54
/** @type {Visitors } */
55
55
const javascript_visitors_runes = {
56
56
...global_visitors ,
57
57
ClassBody : ClassBodyRunes ,
58
- PropertyDefinition : PropertyDefinitionRunes ,
59
- VariableDeclaration : VariableDeclarationRunes ,
60
58
ExpressionStatement : ExpressionStatementRunes ,
61
- MemberExpression : MemberExpressionRunes
59
+ MemberExpression : MemberExpressionRunes ,
60
+ PropertyDefinition : PropertyDefinitionRunes ,
61
+ VariableDeclaration : VariableDeclarationRunes
62
62
} ;
63
63
64
64
/** @type {Visitors } */
65
65
const javascript_visitors_legacy = {
66
66
...global_visitors ,
67
- VariableDeclaration : VariableDeclarationLegacy ,
68
- LabeledStatement : LabeledStatementLegacy
67
+ LabeledStatement : LabeledStatementLegacy ,
68
+ VariableDeclaration : VariableDeclarationLegacy
69
69
} ;
70
70
71
71
/** @type {ComponentVisitors } */
You can’t perform that action at this time.
0 commit comments