babel-source 5.8.30 → 5.8.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/lib/babel.js +2 -2
- data/lib/babel/source.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
MmZhMDc2ZTQ0NDU3ZDM3M2Q0YWE0NDg1YTEyODYzOGM0NDZmNjBmNQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MzMwZGRhNjA1YjY3MGJlMDlmZTdmZmNkZGYwNTZmYjAxZjU2OTJmNw==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NmIwMDY5NDVkMjE1Yjg5ZDM5ZGM3YThiODYxOGZkOGEzMGMxNDkwZjQ2ZDU3
|
|
10
|
+
ZGM0NTg0NTY3MGZhZDljYmU0YzFlOGQ0MDM5N2E5NjEzZjcwNWM5ZDE5N2Q2
|
|
11
|
+
Y2U3MTFkZGNhOTZkOGEyYzY0MzQzMDRjNWI5ZTliZWQ2OTBjYmI=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
YjhjMTNhNjEyMzFmMTEwNjVjZTQzN2Q0ZjkwYWI4YzZmOTAzYzliNGRhMTFm
|
|
14
|
+
OThjZWYyOTFmMjJmYzczOTU0Yzk1NmFhYjI1NWRlZTk1MTQwMDUwNjM0Y2Q1
|
|
15
|
+
ZmExMWJlNmYwMjJiYTBlNTlmMzk0NTgwM2ZjNmFiMTM2OGFhN2M=
|
data/lib/babel.js
CHANGED
|
@@ -25210,7 +25210,7 @@ var Scope = (function () {
|
|
|
25210
25210
|
// FunctionExpression - id
|
|
25211
25211
|
|
|
25212
25212
|
if (path.isFunctionExpression() && path.has("id")) {
|
|
25213
|
-
this.registerBinding("local", path);
|
|
25213
|
+
this.registerBinding("local", path.get("id"));
|
|
25214
25214
|
}
|
|
25215
25215
|
|
|
25216
25216
|
// Class
|
|
@@ -61642,7 +61642,7 @@ resolve.relative = function (loc) {
|
|
|
61642
61642
|
},{"1":1,"10":10}],609:[function(_dereq_,module,exports){
|
|
61643
61643
|
module.exports={
|
|
61644
61644
|
"name": "babel-core",
|
|
61645
|
-
"version": "5.8.
|
|
61645
|
+
"version": "5.8.31",
|
|
61646
61646
|
"description": "A compiler for writing next generation JavaScript",
|
|
61647
61647
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
|
61648
61648
|
"homepage": "https://babeljs.io/",
|
data/lib/babel/source.rb
CHANGED