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';
4646/** @type {Visitors } */
4747const global_visitors = {
4848 AssignmentExpression,
49+ CallExpression,
4950 Identifier,
50- UpdateExpression,
51- CallExpression
51+ UpdateExpression
5252} ;
5353
5454/** @type {Visitors } */
5555const javascript_visitors_runes = {
5656 ...global_visitors ,
5757 ClassBody : ClassBodyRunes ,
58- PropertyDefinition : PropertyDefinitionRunes ,
59- VariableDeclaration : VariableDeclarationRunes ,
6058 ExpressionStatement : ExpressionStatementRunes ,
61- MemberExpression : MemberExpressionRunes
59+ MemberExpression : MemberExpressionRunes ,
60+ PropertyDefinition : PropertyDefinitionRunes ,
61+ VariableDeclaration : VariableDeclarationRunes
6262} ;
6363
6464/** @type {Visitors } */
6565const javascript_visitors_legacy = {
6666 ...global_visitors ,
67- VariableDeclaration : VariableDeclarationLegacy ,
68- LabeledStatement : LabeledStatementLegacy
67+ LabeledStatement : LabeledStatementLegacy ,
68+ VariableDeclaration : VariableDeclarationLegacy
6969} ;
7070
7171/** @type {ComponentVisitors } */
You can’t perform that action at this time.
0 commit comments