Gavin King
Gavin King
No, it's not possible *today*, but in principle it would be pretty simple to add.
Note that the bug only affects expressions like `Item.make`. It does not occur for`this.Item.make`.
I guess it's because there is no `new` anywhere, so `this` is pointing to the wrong thing.
The problem is in `FunctionHelper.generateCallable()`, I'm just trying to coax it into generating the right code.
I've fixed this, I believe, but still need to add a test.
> Couldn't you still import them from inside the class? Yes, of course.
> Also, were you planning of keeping the toplevels as deprecated until say 1.5? I guess we could do that.
>> Also, were you planning of keeping the toplevels as deprecated until say 1.5? > > I guess we could do that. Except 1.4 is the release that is breaking...
Yes, there is an `aliased` annotation already.
> What _has_ really bugged me is the top-level function `smallest()`, which is ungrammatical for `smaller()`. Right, well that's the thing, I always wanted to call that function `smaller()`. But...