Слава Україні! Героям слава!

Results 157 comments of Слава Україні! Героям слава!
trafficstars

@alfonsogarciacaro Sounds like you're saying there may be still some benefits from having a facade on top of FCS. I'll try to find some time to look at updating the...

@alfonsogarciacaro I thought watch is now using `ParseAndCheckFileInProject`, no?

@alfonsogarciacaro Can you post the same numbers with Fable 3.4.10, for comparison?

@alfonsogarciacaro See #2075.

> Didn't know ts2fable used the EntryPoint attribute either. Perhaps the CLI portion of `ts2fable` can be split out, so the library can be reused.

@eloraiby Too bad there is no 64-bit __asm jmp intrinsic ~~so we're stuck with 32-bit on MSVC~~. Added switching on JIT ops instead.

@eloraiby I fixed two memory leaks (#18), but that's probably orthogonal to this issue.

@eloraiby I don't see a penalty for switching on op instead of labels (see #19), it's about the same (32-bit). In WebAssembly, switch may even be a bit faster than...

@eloraiby Fixed all the printfn issues, hopefully. Also now using [JIT ops switch](https://github.com/ncave/dotnet-js/blob/master/src/DNA/native/src/JIT.h#L25) instead of labels, to squeeze every little bit of performance out of it (but I'm sure there...

@eloraiby No, I have a day job, but the print issue was bugging me, so I had to dig deep to figure it out. Turned out to be simple once...