Yusuke Suzuki

Results 116 comments of Yusuke Suzuki

> Do you mind taking a look at it? No, not at all. Of course I'll take a look at it :)

I suggest using [node-browserify](https://github.com/substack/node-browserify) to generate single file. In [esmangle](https://github.com/Constellation/esmangle) project, we generate it by using browserify.

> I can't get it to automatically export CoffeeScript (probably an option I'm missing) In Esmangle, creating entry point JavaScript file `tools/entry.js` and doing `browserify tools/entry.js`. https://github.com/Constellation/esmangle/blob/master/tools/entry.js And because node-detective...

If you're interested in getting stractural type tree, [doctrine](https://github.com/Constellation/doctrine) can parse closure-compiler style type annotation.

@omasanori pointed rust will upstream their patches[[1](https://github.com/mozilla/rust/issues/4259)]. So this example is wrong, sorry. But since current STACK requires development version of LLVM, so I think bundling specific revision of LLVM...

Good catch. What model is good to optimize this do you think? I think when target branch is at second last of for statement body block and branch body is...

I've implemented latter optimization to DCE pass, it already calculated jump target.

Ah, currently, estraverse doesn't support it.

Thank you for your report. > Is this a known limitation in estraverse? Is there a way around this? Here is the file I'm trying to analyze. No. There's no...

Quoted: `function a(a){return void a()}` which would hopefully be further reduced to this program: `function a(a){a()}`