We got liftoff!

The Dotty compiler for Scala bootstraps.

The Dotty project is a platform to develop new technology for Scala tooling and to try out concepts of future Scala language versions. Its compiler is a new design intended to reflect the lessons we learned from work with the Scala compiler. A clean redesign today will let us iterate faster with new ideas in the future.

Today we reached an important milestone: the Dotty compiler can compile itself, and the compiled compiler can act as a drop-in for the original one. This is what one calls a bootstrap.

Why is this important?

The main reason is that this gives us a some validation of the trustworthiness of the compiler itself. Compilers are complex beasts, and many things can go wrong. By far the worst things that can go wrong are bugs where incorrect code is produced. It's not fun debugging code that looks perfectly fine, yet gets translated to something subtly wrong by the compiler.

Having the compiler compile itself is a good test to demonstrate that the generated code has reached a certain level of quality. Not only is a compiler a large program (44k lines in the case of Dotty), it is also one that exercises a large part of the language in quite intricate ways. Moreover, bugs in the code of a compiler don't tend to go unnoticed, precisely because every part of a compiler feeds into other parts and all together are necessary to produce a correct translation.

Are we done yet?

Far from it! The compiler is still very rough. A lot more work is needed to

What are the next steps?

Over the coming weeks and months, we plan to work on the following topics:

If you want to get your hands dirty with any of this, now is a good moment to get involved! Join the team of contributors, including Dmitry Petrashko (@DarkDimius), Guillaume Martres (@smarter), Ondrey Lhotak (@olhotak), Samuel Gruetter (@samuelgruetter), Vera Salvis (@vsalvis), and Jason Zaugg (@retronym).

To get started: https://github.com/lampepfl/dotty.