Adam Warski

Results 549 comments of Adam Warski

Hm interesting ;-) Well if there's no obvious fix, it's at least good that we have a test case now - who knows, maybe this will get fixed in some...

I don't think it's possible to access the enclosing class of the enclosing class in a macro (there's only `Context.enclosingClass`, but it's not recursive)

I think that one of the main advantages of the approach to DI presented in http://di-in-scala.github.io/ is that it can be used without any libraries/frameworks, and most of the material...

Keeping open to cleanup the docs, even though I'd like to do it in a different form :)

That must be the weirdest bug ever :) @mkubala thanks for looking into it! Did you post on some mailing list? Temporary workaround sounds good, it's probably easier to introduce...

Well, still would be nice to relieve users from finding out about such weird behavior in the first place ;) Anyway, let me know when you mail onto scala's user...

Well using 'def's for wiring is something that I consider a core feature, so I definitely wouldn't remove this. Protected members should work - as anything that is accessible, you...

Interesting, thanks for the info! I don't think anybody ever looked at optimizing the code - if you would have any data on what specifically takes so long, that could...

Hm if the typechecks aren't cached (by the compiler) that might indeed be n^2. There's always the option of introducing a magnolia-style global cache which would remember previous type check...