Last October, I created TypeScript from Rust using bindings for the Chakra JavaScript engine. Last week, a
bug was fixed in the bindings, so I did another prototype with a different approach today. Instead of Rust traits, I'm wrapping the JavaScript types in Rust structs. The resulting create_source.rs code looks a lot better.
create_source.rs loading ...
Upcast
One of the main differences between this and the TypeScript original is that the Rust types need to be explicitly upcasted. I created
as_ functions such as
as_Expression() to handle upcasts
. I think this is a decent solution, but I bet a more elegant solution could be made if
traits were upcastable to supertraits in Rust. That is Rust issue I want fixed the most.
Output
As before, it outputs the same TypeScript code.
output.txt loading ...
Original TypeScript
For comparison, here is the
original TypeScript again:
create_source.ts loading ...
Proof of Concept
Just like last time, this was just a proof of concept. It took me about two months of hacking ts2fable to make it usable. I think for the
Rust + WebAssembly initiative to be successful, the interop with existing JavaScript libraries will be important. These prototypes explore that space by taking advantage of TypeScript. I am curious if this can also be done in wasm instead of Chakra. That may be next.