From 8f587fa833fc89e9890a87d14d7198652d195350 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Mon, 13 Oct 2014 03:26:13 +1100 Subject: [PATCH] rename block binding to let scoping --- FEATURES.md | 2 +- README.md | 4 ++-- lib/6to5/transformers/{block-binding.js => let-scoping.js} | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename lib/6to5/transformers/{block-binding.js => let-scoping.js} (100%) diff --git a/FEATURES.md b/FEATURES.md index 3cf67336e5..673fc13e84 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -12,7 +12,7 @@ arr.map(x => x * x); ``` -## Block binding +## Let scoping ```javascript for (let i in arr) { diff --git a/README.md b/README.md index 02cb73634e..42d0a82717 100644 --- a/README.md +++ b/README.md @@ -66,8 +66,8 @@ It's as easy as: To be implemented: - - [Block binding](FEATURES.md#block-binding) - [Generators](FEATURES.md#generators) + - [Let scoping](FEATURES.md#let-scoping) ## Usage @@ -340,7 +340,6 @@ better suited if you'd like a full ES6 environment with polyfills and all. | Source maps | ✓ | ✓ | ✓ | | ✓ | ✓ | | No compiler global pollution | ✓ | | ✓ | | ✓ | ✓ | | Arrow functions | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | -| Block binding | | ✓ | | | ✓ | | | Classes | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | Computed property names | ✓ | ✓ | ✓ | ✓ | ✓ | | | Constants | ✓ | ✓ | | | ✓ | | @@ -348,6 +347,7 @@ better suited if you'd like a full ES6 environment with polyfills and all. | Destructuring | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | For-of | ✓ | ✓ | ✓ | ✓ | ✓ | | | Generators | | ✓ | ✓ | | | | +| Let scoping | | ✓ | | | ✓ | | | Modules | ✓ | ✓ | | ✓ | | | | Property method assignment | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | Property name shorthand | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | diff --git a/lib/6to5/transformers/block-binding.js b/lib/6to5/transformers/let-scoping.js similarity index 100% rename from lib/6to5/transformers/block-binding.js rename to lib/6to5/transformers/let-scoping.js