Skip to content

Commit ee00946

Browse files
committed
chore: fix lint
1 parent f953b53 commit ee00946

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/svelte/src/compiler/phases/1-parse/read/expression.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ export default function read_expression(parser, opening_token, disallow_loose) {
6363

6464
return /** @type {Expression} */ (node);
6565
} catch (err) {
66-
// If we are in an each loop we need the error to be thrown in cases like
67-
// `as { y = z }` so we still throw and handle the error there
66+
// If we are in an each loop we need the error to be thrown in cases like
67+
// `as { y = z }` so we still throw and handle the error there
6868
if (parser.loose && !disallow_loose) {
6969
const expression = get_loose_identifier(parser, opening_token);
7070
if (expression) {

0 commit comments

Comments
 (0)