Andrey Kobets

Results 10 comments of Andrey Kobets

It's possible. Absolutely any recursion can be written in the form Cycle. Tail recursion is optimized very simple, because they don't need the call stack. http://en.wikipedia.org/wiki/Tail_call For example [LispyScript](http://lispyscript.com/) supports...

_Scripts starting with shebang should be invoked directly from shell, not through node.js._ Yes, but here is something else: the code is not transpiled - es6-transpiler error. **console.es6** ``` js...

This could be done optionally, for example ``` js //#!/usr/bin/env node /* my CLI app */ ``` ``` bash es6-transpiler myApp.es6 --sha-bang > myApp.js ``` -> ``` js #!/usr/bin/env node...

It does not matter, i'll be glad to any implementation. https://github.com/visionmedia/commander.js - good module.

Why? In previous version es6-transpiler all works fine.

**v0.7.16** **all fine**, `node_modules/.bin/es6-transpiler.cmd` ``` bash @IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\..\es6-transpiler\build\es5\es6toes5" %* ) ELSE ( node "%~dp0\..\es6-transpiler\build\es5\es6toes5" %* ) ``` **v0.7.16-2** **error**, `node_modules/.bin/es6-transpiler.cmd` ``` bash @IF EXIST "%~dp0\/bin/sh.exe" (...

> @kobezzza Any constructive feedback to offer? Angular2, Iridium and other amazing projects uses class decorators and it's real powerfull and sugar feature. Do you want to kill it?

> I actually don't have a case where I've used class decorators. https://angular.io/