WurstScript
WurstScript copied to clipboard
Allow to reference names from other packages explicitly
It should be possible to write Blub.foo()
to reference the function foo
in package Blub
.
Maybe this is a a bad idea, because the dependencies of a package would no longer be visible by just looking at the imports...
Will implement this, but Blub.foo
will only be available if package Blub
was imported.
That sounds great!
So what then do existing public class members look like? Blub.Blub.foo
?
That's certainly a pattern I've seen for vjass->wurst translated code