| ▲ | dimitropoulos 6 hours ago |
| the real story here is an incredible team that managed to simultaneously keep two separate codebases alive for the most advanced type system known to mankind (yeahhh yeahh Hindley-Milner eat your heart out). huge congrats to the team! looking forward to the Rust rewrite ;) |
|
| ▲ | hoppp 5 hours ago | parent | next [-] |
| I am not sure a rust rewrite would be meaningful. Go is great because it's fast to code.It's easy to reimplement typescript in go 1:1 just by looking at the code. Rust on the other hand would take a lot longer to develop. Maybe rust is 20% faster than go but overall the increase from typescript with go is good enough. Maybe rust would yield a 14 times speedup over the 11 times in vscode but go is already good enough to make a huge difference. |
| |
| ▲ | afdbcreid 3 hours ago | parent | next [-] | | A Rust rewrite would have an easy way to expose an API, something they're still debating how to do and deferring to 7.1. But the team has already choose. They explained their reasoning and IMO it makes sense: they didn't want a rewrite, they wanted a bug-for-bug file-by-file translation. With a borrow checker and no GC, Rust sometimes forces you to structure things differently (especially in a compiler that usually has a lot of circular structures), so it was not worth it. | |
| ▲ | nicoburns 4 hours ago | parent | prev | next [-] | | The benefit to Rust rewrite would be integration with the rest of the JS tooling ecosystem which is increasingly written in Rust rather than performance. It probably won't ever happen though. > It's easy to reimplement typescript in go 1:1 just by looking at the code. That's also true of Rust if your codebase is written in a functional style. But apparently TSC had a lot of inheritance, which probably isn't a great fit for porting to Rust. | |
| ▲ | dimitropoulos 5 hours ago | parent | prev [-] | | jokes aside, have you heard of the Jevons Paradox[1]? it feels like the "induced demand" effect to me with the whole "just one more lane" phenomenon you sometimes can see in roadways. when you increase the efficiency of a thing you thereby expand the set of things it can economically be used for, causing an overall increase in total consumption over time - not a decrease like you'd expect from just having made it much more efficient. "a smaller slice of a much bigger pie is still more pie" or something like that. in TypeScript's case with the "pie" being compute time, things like HKTs (e.g. hotscript, hkt-toolbelt) that might not have made as much sense in the past suddenly become so much more feasible, but also are the very things that drag that hard-fought efficiency win back down into the mud. is it worth it? library authors will ultimately be the ones to decide the big chunks of that question by virtue of what they ship in their types. [1] https://en.wikipedia.org/wiki/Jevons_paradox | | |
| ▲ | hoppp 4 hours ago | parent | next [-] | | Yes, I saw the YouTube video about Jevons paradox from Hank Green yesterday. :) | | | |
| ▲ | tancop 3 hours ago | parent | prev [-] | | the difference is with roads you dont get a lot of good secondary effects, one lane is just like the next. benefits are linear with the cost so they balance out. but with typescript and software in general they can be exponential. fast type inference unlocks brand new patterns that were too slow to be practical on the old checker. at least some of them will turn out to be useful for peoples projects. and its also great for legacy or less complex code bases that will get faster type checking for free. |
|
|
|
| ▲ | DonaldPShimoda 6 hours ago | parent | prev | next [-] |
| Most complex, perhaps, but not "most advanced". I don't think there's necessarily a meaningful "correct" choice for that title, but surely one of the proof assistant languages would be a more likely candidate? (I don't say this to be disparaging of TypeScript's type system, by any means — it's very interesting stuff!) |
| |
| ▲ | dimitropoulos 6 hours ago | parent [-] | | good points, let's get negated types and higher kinded types in there then you've got yourself a deal. maybe regex thrown in too for flavor |
|
|
| ▲ | mejutoco 3 hours ago | parent | prev | next [-] |
| > for the most advanced type system known to mankind Honest question, what do you mean by this? |
|
| ▲ | samuell 4 hours ago | parent | prev | next [-] |
| Steve Francia (author of Hugo and a bunch of other top Go projects) wrote up some thoughts of Go's fit in the agentic era: https://spf13.com/p/go-the-agentic-language/ |
|
| ▲ | paxys 3 hours ago | parent | prev | next [-] |
| They picked Go after meaningfully considering Rust (and others). I don't remember all the reasons for it but it was detailed in the original blog post. |
|
| ▲ | giraffe_lady 3 hours ago | parent | prev | next [-] |
| Algorithm W is like undergrad level of sophistication. People who like HM more (and I am one) don't like it because it's "advanced" and to some extent exactly because it isn't. It's sound and fast and infers almost everything. TS seems to have one of those features now, so that's nice. |
|
| ▲ | tshaddox 4 hours ago | parent | prev [-] |
| > most advanced type system known to mankind (yeahhh yeahh Hindley-Milner eat your heart out) This TypeScript release is largely about performance. Isn't OCaml still at least twice as fast (and maybe even faster for incremental compilation on very large codebases)? |
| |
| ▲ | whilenot-dev 3 hours ago | parent [-] | | I don't think GP was referring to transpilation speed when they wrote "most advanced type system known to mankind". | | |
| ▲ | tshaddox 2 hours ago | parent [-] | | The original poster was referring to the golang port of TypeScript which was done almost exclusively for performance reasons. They weren’t just making an unprompted comparison of two type systems. |
|
|