Skip to content

Commit ed1bb9f

Browse files
committed
alphabetize
1 parent 2e62d0b commit ed1bb9f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

packages/svelte/src/compiler/phases/3-transform/server/transform-server.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,26 +46,26 @@ import { TitleElement } from './visitors/template/TitleElement.js';
4646
/** @type {Visitors} */
4747
const global_visitors = {
4848
AssignmentExpression,
49+
CallExpression,
4950
Identifier,
50-
UpdateExpression,
51-
CallExpression
51+
UpdateExpression
5252
};
5353

5454
/** @type {Visitors} */
5555
const 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} */
6565
const javascript_visitors_legacy = {
6666
...global_visitors,
67-
VariableDeclaration: VariableDeclarationLegacy,
68-
LabeledStatement: LabeledStatementLegacy
67+
LabeledStatement: LabeledStatementLegacy,
68+
VariableDeclaration: VariableDeclarationLegacy
6969
};
7070

7171
/** @type {ComponentVisitors} */

0 commit comments

Comments
 (0)