babel-source 5.3.2 → 5.3.3

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.
Files changed (4) hide show
  1. checksums.yaml +8 -8
  2. data/lib/babel.js +3 -3
  3. data/lib/babel/source.rb +2 -2
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZTViYzFmZGI5ZmIwZDNlZWUzNmM0MjI5NDU2MTA4Y2M0OTViYzRlZg==
4
+ ZWVmMjczYmUzNzU3MGQ4ZDg0YzIyZjU2N2YyNmViOWRiNWI0OTMwMg==
5
5
  data.tar.gz: !binary |-
6
- NTkwODdhODA3ZWVhYTAyOWUzN2Y0MTk0YzdkMmRkZjFkNjNmOGZiYw==
6
+ MzdkZjBmZWE4YzViNDhkMDI0MDFmMThlODVkZWYwNjgxMDJjNWI4OQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YzdlZDIxZGFjZmE2M2M0YThmNzRhMzhjMGZiMTIxN2M3ZjY0NjUwMjFlNTI4
10
- ZmM3YzU3Yjg5MmY3NTViOGNmYmY3ZDJiZjM0MmE5NWRhNTdiOTJlYzI3ZGU0
11
- OGZlYzdjYjQwNGY2ZTFlOWY0MzZiODM2NzA3OTZmYjBlZWExZjY=
9
+ ODFjNmVkYmU2ZDk0ZmI3NjA0YmE5NzAxMzAwMDVhMWVjMDg0ZmRkZGE5MmE1
10
+ OGI4ZGE1NGQwOGZlYzAyMDg1M2M5MDAwZmUwNGY4OTgzMzZhZDcxODM3YzJm
11
+ Zjc0ZGIxMzkyY2QwYWFjNmJiMjczNjJlZjA3NDY1MTRjN2NkY2U=
12
12
  data.tar.gz: !binary |-
13
- YTc2MjBkMWQ3NzMwYzI0NzU0Y2UxMmNkMzExMjU4NjQ1ZDhiOTRkZDg5ZjZj
14
- Y2Y1Mzk2YWM2YjMzYzNlZTg4MzUyZGVjNGJlYWRmMzM3N2QwZDU1MDk4ZTVm
15
- ZmM3ZGI0NzI5OTlmMTFkYmRhNTk2YTBhZTQxMjRhY2Q2OGI1YTI=
13
+ Yzk5MGU3N2JjM2ZlYTdjOWQ2OGUzYjllY2ZlM2ZmYTgxMjgyZGNjOWM1NTFk
14
+ NjEwZTcxZmNlMjg5ZGE0ZGM4ZjYzY2FjNDBhMjJiYjg0YzYyN2M5MjcyYjVi
15
+ ZjQyNTgyMzc2M2E5YzQ4N2M3ZmRjMWZmMzg1ODg0YWI3YjRmZjk=
@@ -16548,7 +16548,7 @@ exports.metadata = metadata;
16548
16548
  function ReferencedIdentifier(node, parent, scope) {
16549
16549
  var binding = scope.getBinding(node.name);
16550
16550
  if (!binding || binding.references > 1 || !binding.constant) return;
16551
- if (binding.kind === "param") return;
16551
+ if (binding.kind === "param" || binding.kind === "module") return;
16552
16552
 
16553
16553
  var replacement = binding.path.node;
16554
16554
  if (t.isVariableDeclarator(replacement)) {
@@ -19559,7 +19559,7 @@ var TraversalPath = (function () {
19559
19559
  if (!binding || !binding.constant) return;
19560
19560
 
19561
19561
  // todo: take into consideration infinite recursion #1149
19562
- //return;
19562
+ return;
19563
19563
 
19564
19564
  if (binding.path === this) {
19565
19565
  return this;
@@ -85900,7 +85900,7 @@ module.exports = function (str) {
85900
85900
  module.exports={
85901
85901
  "name": "babel-core",
85902
85902
  "description": "Turn ES6 code into readable vanilla ES5 with source maps",
85903
- "version": "5.3.2",
85903
+ "version": "5.3.3",
85904
85904
  "author": "Sebastian McKenzie <sebmck@gmail.com>",
85905
85905
  "homepage": "https://babeljs.io/",
85906
85906
  "license": "MIT",
@@ -1,7 +1,7 @@
1
1
  module Babel
2
2
  module Source
3
- VERSION = "5.3.2"
4
- DATE = Time.at(1431543440)
3
+ VERSION = "5.3.3"
4
+ DATE = Time.at(1431551312)
5
5
  PATH = File.expand_path("../..", __FILE__)
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: babel-source
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.3.2
4
+ version: 5.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sebastian McKenzie