Skip to content

Conversation

lateau
Copy link

@lateau lateau commented Feb 8, 2016

These keywords have same syntax with var and should work well with same token parsing.

((function ()
  'use strict'
  (let a 1)
  (const b 2)
  (var c 3)))

=>

(function() {
    'use strict';
    let a = 1;
    const b = 2;
    var c = 3;
})();

These keywords have same syntax with var and should work well with same token parsing.

```
((function ()
  'use strict'
  (let a 1)
  (const b 2)
  (var c 3)))

=>

(function() {
    'use strict';
    let a = 1;
    const b = 2;
    var c = 3;
})();
```
@bowbahdoe
Copy link

Is there any reason this hasn't been merged?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants