Joe Eli McIlvain

Results 323 comments of Joe Eli McIlvain

It's totally possible to deal with that by basically just building everything twice and using `lipo` to stitch them together into the two slices of a "universal binary". However, it...

We discussed this on today's sync call. I didn't take notes on all of what was said, and I personally don't know a lot about it, but if you listen...

Possibly helpful information from Rust land: https://users.rust-lang.org/t/compiling-to-the-web-with-rust-and-emscripten/7627

@pannous - I don't think anyone is working actively on this at the moment. If anyone is interested in working on this we can try to provide some pointers about...

@Praetonus We could potentially dodge the FFI question for a little while by only allowing FFI calls to the `libponyrt` functions on the `wasm` platform, which would probably themselves be...

Some minor progress has been made in this PR, which lays the ground work for compiling the runtime with Emscripten: https://github.com/ponylang/ponyc/pull/3906 What's still missing (as described in that PR) is...

Here's the AST output, taken using `ponyc --pass=parse --ast`: ``` (package:scope (module:scope (actor:scope (id Main) x x x (members (new:scope x (id create) x (params (param (id env) (nominal x...

The parsing bug here is that it is treating the following expression: ```pony """ Line 1: """ + somevar + " Line 3 """ + someFun() ``` As if it...

@piotrmurach - I see some recent commits about Windows, so I'm wondering how Windows support is coming. I'd be interested to put in some time here to help you out...

My work that I was doing on this is fairly suspended in an unfinished state - I'm not actively working on it at this time, unfortunately - I've had other...