EotT123

Results 39 comments of EotT123

In your example, the only distinction is the type of the parameter, while the parameter name remains unchanged. I would like to propose considering scenarios where both the parameter name...

Fair enough. I can definitely see your point of view. I imagine it's not trivial to implement, especially with the added complexity of supporting optional parameters as well. That said,...

Blocked until `Attr` can be hooked. See [Discord](https://discord.com/login?redirect_to=%2Fchannels%2F1263152297190359132%2F1336818328601366608%2F1336862519477928060): > Hi @EotT. I don't like it either re module specific stuff in lower modules, particularly core (the common one). > >...

This is a serious issue, as it seems to prevent the plugin from working correctly in many cases. Several Manifold-specific features are now being marked as invalid by IntelliJ.

Latest: IntelliJ IDEA 2025.2.4 (Community Edition) plugin, also latest: 2025.1.20

The problem is that the automatic formatter removes the space (and the import afterwards, because it's considered an unused import.). I don't think I can disable this without disabling the...

Structural interfaces are certainly an option, but they come with their own drawbacks. For example, sealed interfaces can be used in exhaustive switch expressions, while structural ones cannot. Structural interfaces...

I'm not sure this is a regression, I'm wondering if this is even possible. If you don't make the parameters of B optional (i.e. not duplicating the default values), the...

I would be nice to have something like this, but there are probably more interesting things to work on. Since there is a workaround with some code duplication, you can...