Martin Egri

Results 56 comments of Martin Egri

Having had a taste of scalaz.concurrent.Task, I kinda wish that Futures would allow delayed execution (as in don't spawn a new one every time I map over one) in a...

~~Seems like I have to sign the CLA every time I push something... weird.~~ Fixed

Those `TypeTag[whatever]` also feel like a leaky abstraction. Something should probably be done with those before considering a merge.

Using one of the approaches mentioned here might do the trick: https://stackoverflow.com/questions/23785439/getting-typetag-from-a-classname-string

I've updated the prototype and I'm now confused. It seems to partially work! But why? I've basically bludgeoned `def taskMethods` into frankenstein's method. There seems to be some issues with...

Comparison of running `cbt` on a simple project **before** ``` Methods provided by Build(/Users/martin/dev/scala/cbt-test/splaintest) dontShowMe sausages Methods provided by CBT (but possibly overwritten) _context buildInfoXml c classLoader classLoaderCache classes classpath...

``` Methods provided by Build(/Users/martin/dev/scala/cbt-test/splaintest) All Bounds BoundsImplicits BreakInfix Color Compact FoundReq Implicits Infix Off On Tree TruncRefined splainParams splainVersion ``` That, basically. It makes sense (to me) to have...

> Why not use protected then? Java reflection picks up on that. Either Scala is encoding things differently than java reflection expects, or I'm doing something wrong. On a side-note,...

protected[this] shows up as public. private and private[this] is private to java reflection.

I have a working prototype at home, I'll commit it so you can have a look when I'm back :) Performance may be worse than Java but I doubt it'll...