Sam Ruby
Sam Ruby
@cerdiogenes if you wanted to use double quotes, they would need to go outside of the backtics. @rubydesign editors generally don't understand semantics, only syntax. Opal allows JavaScript semantics to...
@cerdiogenes Gotcha. I'd like two changes: (1) continue to pass the context to the call to convert so that backtics will also work, and (2) make that opt-in, so if...
This looks promising: https://rossta.net/blog/testing-rails-generators.html Unless you beat me to it, I'll look into it Monday-ish.
I presume that was the output, what was the input?
I came across this issue as a result of this comment: https://github.com/ammar/regexp_parser/issues/80#issuecomment-784543054 Not having a ES2018 mode would be a regression if ruby2js were to make use of this function....
First observation: we should plan to move to having `--shared` as the default for both CI and releases. This would make releases include a shared library that could be used...
@empyrical today if you do the following on Mac or Linux: ``` ./configure --shared make -j4 ``` You end up with `out/Release/node` and `out/Release/libnode.67.dynlib` or `out/Release/lib.target/libnode.so.67`. Adding additional NAPI apis...
@empyrical that's actually what `--shared` does. Here are the sizes of the output files on Mac OS/X: ``` $ ls -l out/Release/node out/Release/libnode.67.dylib -rwxr-xr-x 1 rubys staff 40410544 Sep 29...
> I don’t think we can get away with a default where people have only a libnode + wrapper available as part of the release tarballs Why not?
> node executable probably enjoys the most compact binary for a language runtime of all time - no linkage dependency other than the c|c++(rt) I'm clearly not understanding the downside....