babel-source 4.7.11 → 4.7.12
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 +5 -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
|
+
ZjRhZWQ0MDJlZGM4ODcwMzI3MGFkYjBjM2U2NWNmMTdmYjY4ZDI1Mw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZDEyMDNmYmFiYTljNzRjNGI3MDY1ZTc0YmIwN2M0YTEyZmFiNzhlMg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZTM4MzY1MDczNGY2OTg4OGFiZTI2ZTJjZGM5YTEwMDRmYmIwMzdiOTE4N2Ix
|
10
|
+
ODU3NDhhN2FhOTg1Y2MxNmU4ZjdjMWIzYmU4ODg0YTVjZWU3YWZmZGJhMjBh
|
11
|
+
OWM0YWViYTBkZmVkZGZhODNhMDE2NTRlNzBkZjc2NmVjZGZmOWY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
Mjk3MjE1NDM2ODkzMGQ3OTYzNDA3YzllYTMzOTNkZDJkYTM1NjgzYjRhMzlm
|
14
|
+
ZWNiZWI4YjY4OWI5Mjg0ZDQ1ZjFlODM4YTg3ODFjZDk0YWRkMWU5NzVjMDcy
|
15
|
+
ZDU3YjNiZmMxZWE2ZTc0MzIxNzNhOTc2MWQ3ZjE0NmY5ZmVkOWM=
|
data/lib/babel.js
CHANGED
@@ -10063,7 +10063,6 @@ build(exports, {
|
|
10063
10063
|
}),
|
10064
10064
|
|
10065
10065
|
build: function build(node, file) {
|
10066
|
-
console.error("The memoization operator is deprecated and will be removed in 5.0.0");
|
10067
10066
|
return t.unaryExpression("!", t.callExpression(t.memberExpression(file.addHelper("has-own"), t.identifier("call")), [node.object, node.property]), true);
|
10068
10067
|
}
|
10069
10068
|
});
|
@@ -10083,6 +10082,8 @@ var t = _interopRequireWildcard(require("../../../types"));
|
|
10083
10082
|
var playground = exports.playground = true;
|
10084
10083
|
|
10085
10084
|
function BindMemberExpression(node, parent, scope) {
|
10085
|
+
console.error("Method binding is deprecated and will be removed in 5.0.0");
|
10086
|
+
|
10086
10087
|
var object = node.object;
|
10087
10088
|
var prop = node.property;
|
10088
10089
|
|
@@ -10099,6 +10100,8 @@ function BindMemberExpression(node, parent, scope) {
|
|
10099
10100
|
}
|
10100
10101
|
|
10101
10102
|
function BindFunctionExpression(node, parent, scope) {
|
10103
|
+
console.error("Method binding is deprecated and will be removed in 5.0.0");
|
10104
|
+
|
10102
10105
|
var buildCall = function buildCall(args) {
|
10103
10106
|
var param = scope.generateUidIdentifier("val");
|
10104
10107
|
return t.functionExpression(null, [param], t.blockStatement([t.returnStatement(t.callExpression(t.memberExpression(param, node.callee), args))]));
|
@@ -46210,7 +46213,7 @@ module.exports = function (str) {
|
|
46210
46213
|
module.exports={
|
46211
46214
|
"name": "babel",
|
46212
46215
|
"description": "Turn ES6 code into readable vanilla ES5 with source maps",
|
46213
|
-
"version": "4.7.
|
46216
|
+
"version": "4.7.12",
|
46214
46217
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
46215
46218
|
"homepage": "https://babeljs.io/",
|
46216
46219
|
"repository": "babel/babel",
|
data/lib/babel/source.rb
CHANGED