Matthias Wahl

Results 124 comments of Matthias Wahl
trafficstars

After debugging this i found out that the `finalisers` pass is analyzing the called function body and in this case is tripping over this line: https://github.com/ponylang/ponyc/blob/main/packages/collections/range.pony#L80 ```pony _forward = (_min...

If I would do it (which i might), I would do it in python, since its stdlib offers enough low-level apis to do all the things listed above without requiring...

You need to use another API, as a subscription is only created asynchronously. When you call `consumer.subscribe()` it does not block until the subscription is successful. The signal you need...

The main goal i would like to pursue is to have the visitor of the website, especially newcomers to pony, be able to get a good first impression of the...

I will verify if this still happens with the new http-server and close it if not.

Yes, good point @erf ! I first wanted to set up a good real-world setting on gcp for getting some more meaningful numbers than stuff running on my local machine,...

the print pass is still using case functions, a feature removed from ponyc in release 0.22.0 . The `_show` function needs to be ported to use `iftype`.

I totally agree with you. The error message is confusing and not very helpful. We should make a special case in the error handling where we check both the receiver...

@Praetonus i would like to suggest this as a GSoC project for this year. Are you still working on this? Do you have any code you can already provide or...

This will be fixed when we implement Stream Handling throughout the runtime and scope CB events either to the whole sink or to a single stream only. See also the...