Paulo Lopes

Results 289 comments of Paulo Lopes

@pintomau I had this question a while ago. I've ended up by reformating the exception textual content on my logger, replacing the character indexes by, the line and column indexes...

I believe what @mdsina wants (and I'd to know if it's possible too) is access the executor as described in https://promisesaplus.com/ sections 2.2.4 Where it's suggested that the platform code...

async/await can be handled by graaljs the polyfill works for me with async await too.

https://github.com/reactiverse/es4x/blob/develop/es4x/src/main/resources/io/reactiverse/es4x/polyfill/promise.js

I think what isn't totally clear is where is the executor happening in graaljs (not node). I think some documentation should be added to explain how this works: ```js var...

so for my case, I think I can drop the polyfill as the thenable is working, the only concern I still have is since I've many context objects I might...

I don't know what your use case is. But the type should not be a problem as long the `then` method is present. But i might not understand the problem...

Ok but if you call the then method on the `result` object with a Java function you can then run your code in the Java thread/stream you want right?

> (Originally posted in Slack:) > > The biggest use-case for us is we have a TON of Java methods that return Single (the majority of our Java code is...

Are there any night builds? Or in order to test I need to build the whole graalvm myself?