aiken-lang / aiken

A modern smart contract platform for Cardano
https://aiken-lang.org
Apache License 2.0
396 stars 82 forks source link

Automatically merge import lines from same module. #952

Closed KtorZ closed 1 month ago

KtorZ commented 1 month ago

I slightly altered the way we parse import definitions to ensure we merge imports from the same modules (that aren't aliased) together.

This prevents an annoying warning with duplicated import lines and makes it just more convenient overall.

As a trade-off, we can no longer interleave import definitions with other definitions. This should be a minor setback only since the formatter was already ensuring that all import definitions would be grouped at the top.


Note that, I originally attempted to implement this in the formatter instead of the parser. As it felt more appropriate there. However, the formatter operates on (unmutable) borrowed definitions, which makes it annoyingly hard to perform any AST manipulations. The Document returns by the format carries a lifetime that prevents the creation of intermediate local values.

So instead, slightly tweaking the parser felt like the right thing to do.

rvcas commented 1 month ago

Excellent 🔥