don't crash when using an arrow function as a statement (#5000)

pull/5007/head
Conduitry 5 years ago committed by GitHub
parent 16a6cc1830
commit 6404656698
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -3,6 +3,7 @@
## Unreleased
* Fix `bind:group` inside `{#each}` ([#3243](https://github.com/sveltejs/svelte/issues/3243))
* Don't crash when using an arrow function as a statement ([#4617](https://github.com/sveltejs/svelte/issues/4617))
* Deconflict `bind:this` variable ([#4636](https://github.com/sveltejs/svelte/issues/4636))
## 3.23.1

6
package-lock.json generated

@ -769,9 +769,9 @@
"dev": true
},
"code-red": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/code-red/-/code-red-0.1.1.tgz",
"integrity": "sha512-2pEIyya4fxI9HxQcrl9dJl20+9He1nLeja50zkf7gK2OTTV9NpD3CgA74gzXnPqWv2zJpa6uXNSaE0haOCpOsw==",
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/code-red/-/code-red-0.1.2.tgz",
"integrity": "sha512-GFNCdH1eTXpmZGzG+/w0L60gO35Kf803UPmAIDlD1220EUk+AtfQuvxnyeRzxIa7FXte0aANnQgySGdoU67I3Q==",
"dev": true,
"requires": {
"acorn": "^7.1.0",

@ -71,7 +71,7 @@
"acorn": "^7.1.0",
"agadoo": "^1.1.0",
"c8": "^5.0.1",
"code-red": "0.1.1",
"code-red": "0.1.2",
"codecov": "^3.5.0",
"css-tree": "1.0.0-alpha22",
"eslint": "^7.1.0",

Loading…
Cancel
Save