Are there any current plans for special reflection support? I didn't see anything specific in the documentation. I'd love to be able to do something like this:
var myObject = SomeClass();
myObject.method("doSomething")(arg1, arg2);
var aValue = myObject.field("aField").get();
Forgive the syntax (this hasn’t been thought through at all), but the idea is just to be able to make dynamic method calls without all the pain that Java’s reflection classes impose.