Skip to content

Commit 5fe05fa

Browse files
committed
More try-catch fixes
- Fix issue where `catch` body was incompletely transformed (see #109) - Fix issue where unreachable continuation generated an illegal Identifer after try-catch (see MatAtBread/fast-async#56)
1 parent 6334ba3 commit 5fe05fa

File tree

3 files changed

+19
-16
lines changed

3 files changed

+19
-16
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -583,6 +583,11 @@ This execution case was pointed out by https://github.com/jods4 - many thanks.
583583
Changelog
584584
==========
585585

586+
30-Apr-18 v3.2.4
587+
588+
- Fix issue where `catch` body was incompletely transformed (see https://github.com/MatAtBread/nodent/issues/109)
589+
- Fix issue where unreachable continuation generated an illegal Identifer after try-catch (see https://github.com/MatAtBread/fast-async/issues/56)
590+
586591
24-Apr-18 v3.2.2
587592

588593
- Fix the lifetime of let and const loop variable declarations (the previous implementation correctly limited the scope, but not the lifetime of the loop declarations, meaning they would be re-used if referenced in a callback)

package-lock.json

Lines changed: 12 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nodent",
3-
"version": "3.2.2",
3+
"version": "3.2.4",
44
"description": "NoDent - Asynchronous Javascript language extensions",
55
"main": "nodent.js",
66
"scripts": {
@@ -13,7 +13,7 @@
1313
"nodentjs": "./nodent.js"
1414
},
1515
"dependencies": {
16-
"nodent-compiler": "^3.2.2",
16+
"nodent-compiler": "^3.2.4",
1717
"nodent-runtime": "^3.2.1",
1818
"resolve": "^1.5.0"
1919
},

0 commit comments

Comments
 (0)