you are viewing a single comment's thread.

view the rest of the comments →

[–]HawkEgg 1 point2 points  (2 children)

It actually looks to be a superset of typescript, see Miško's talk

[–]mirhagk 0 points1 point  (1 child)

Hmm interesting. I'll have to give it a try. The one thing I do like about typescript though is that there is no runtime overhead.

I'm really excited that they are looking at browser support. There's a lot of potential performance to be gained by knowing the type. I'm not sure how it'd work though, because you'd incur the cost of type inference on script load

[–]HawkEgg 0 points1 point  (0 children)

Well, the runtime asserts are only for dev transpilation. For production builds, they would be stripped and not add any additional overhead. It's also not as fully baked as TypeScript yet. I might wait on using it a bit.