Skip to content

Commit 3886832

Browse files
committed
lint
1 parent ed1bb9f commit 3886832

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
/** @import { VariableDeclaration, Node, VariableDeclarator, Expression, CallExpression, Pattern } from 'estree' */
1+
/** @import { VariableDeclaration, VariableDeclarator, Expression, CallExpression, Pattern, Identifier } from 'estree' */
2+
/** @import { Binding } from '#compiler' */
23
/** @import { Context } from '../../types' */
34
/** @import { Scope } from '../../../../scope' */
45
import { extract_paths, is_expression_async } from '../../../../../utils/ast.js';

packages/svelte/src/compiler/phases/3-transform/server/visitors/javascript/shared/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** @import { AssignmentExpression, Expression, Identifier, Pattern } from 'estree' */
1+
/** @import { AssignmentExpression, BinaryOperator, Expression, Identifier, Pattern } from 'estree' */
22
/** @import { SvelteNode } from '#compiler' */
33
/** @import { ServerTransformState } from '../../../types' */
44
import { extract_paths } from '../../../../../../utils/ast.js';

0 commit comments

Comments
 (0)