Results 94 comments of Fabio Tudone

Hi, I'm not too familiar with OSGI but how does the additional Quasar instrumentor work? There's no message at all from instrumentation verification? If you could share a small program...

Quasar code is AOT-instrumented. You'll find the `@Instrumented` annotation in all instrumented classes and methods (either on disk or in memory for run-time instrumented code). You can also run the...

This stack looks regular to me so I think the [previous considerations and suggestions](https://github.com/puniverse/quasar/issues/182#issuecomment-215128603) about instrumentation checking now apply. Have you tried checking manually for instrumentation, with the help of...

Wow that's cool! What does "basic support" mean, have you been able to run Android applications using this modified Quasar, which parts of Quasar and with which degree of success?...

Have you been able to adapt/run existing tests on Java 1.6 (or even a full build)? It would be nice to have a JDK6 build run in CI. As for...

Can you provide a minimal program that reproduces the issue (ideally one file with a `main`)? This will spare a lot of troubleshooting time. TIA

Hi, I might be not reproducing your case accurately but this one works OK for me in `0.7.8` with `testgrp.ChkFun1.apply` as the only line in `META-INF/suspendable-supers` (and the verification complains...

Yes, it is indeed a regression from 0.7.7 to 0.7.8 introduced by name-based call-site instrumentation verification (https://github.com/puniverse/quasar/commit/24e9e5d8a331e4e924d5985fe5d2fcbae0faaf77#diff-4ef312b5913c12763d2e00ecfd5962f2) which, in its current form and in this case, doesn't work because the...

It looks to me like, starting with lambdas, many more stack traces are possible than previously and specifically there are new traces where the caller calls into a functional interface...

Do you get similar results (i.e. `select`ing `null` message from non-`null` select receive actions, some `isDone` and some not, with the underlying channel staying open) on all of 0, 1...