We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9f47ef commit 5d0c427Copy full SHA for 5d0c427
2 files changed
package.json
@@ -16,7 +16,7 @@
16
"homepage": "http://lightscript.org/",
17
"license": "MIT",
18
"dependencies": {
19
- "babylon-lightscript": "^0.5.0"
+ "babylon-lightscript": "^0.5.1"
20
},
21
"files": [
22
"stdlib.js",
test/fixtures/variables/shadow-sibling-function/expected.js
@@ -1,11 +1,12 @@
1
const f = function (x) {
2
return x;
3
};
4
+
5
function g(x) {
6
7
}
8
9
function h() {
10
const x = 3;
11
-}
12
+}
0 commit comments