-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: infinite loop in attr.ts (#409)
* fix: infinite loop * Create weak-lizards-listen.md * fix
- Loading branch information
Showing
5 changed files
with
2,684 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"svelte-eslint-parser": patch | ||
--- | ||
|
||
fix: infinite loop in attr.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<!-- Copied from https://github.com/sveltejs/svelte-eslint-parser/issues/408--> | ||
<script lang="ts"> | ||
export let collapsed = false; | ||
</script> | ||
|
||
<div> | ||
{#if !collapsed} | ||
<svelte:self collapsed let:something> | ||
<slot {something} /> | ||
</svelte:self> | ||
{/if} | ||
</div> |
Oops, something went wrong.