Frotty
Frotty
The following ``` package Test import LinkedListModule class A use LinkedListModule class B extends A use LinkedListModule class C extends A class D extends C use LinkedListModule function doSmth() for...
The problem was that there was a copy of Fx.wurst in lib/ and one in lib/presets/ Clever as ever the compiler just took the one from the rootpath and was...
``` class B var i = 0 function get() returns int return i class A private var foo = b.get() //
Sort of a precursor of #303 Allow tuples to be generic. Example usage would be iterators that return a key-value pair tuple. ``` tuple entry(K key, V val) public class...
.. and then cause "import C could not be found in Y" errors. Even though the package clearly exists:  The problem is that `MapBounds` contains an error, which doesn't...
After the inline phase there are many functions like this ```` function C1 takes nothing returns boolean return true endfunction ```` Left behind which are from packages which init's have...
warnings from stdlib show in user projects. Don't think that's useful.
We want to improve our object editing pipeline to be more flexible and feature-complete. The main problem is that objectdefinitions only save the modifications done to their parent, so if...
Instead of having to make an interface or abstract class, just allow specifying the input and output type to get a functional type. So instead of this: ``` interface MyClosure1...
When the stacktrace is very long it can be displayed out of screen and overlap the minimap and other text messages, therefore being unreadable. I think we can sacrifice anything...