-
Why is optimization level hard-coded to `-O3`?
https://github.com/ponylang/ponyc/blob/c76e5900a3453c6f922d68a3e78bb6e0dafeb971/src/libponyc/codegen/genexe.c#L361
I’d expect to be able to specify o…
-
I managed to reproduce the same behaviour as https://github.com/ponylang/ponyc/issues/3126 with the following code:
```pony
actor Main
let a: Array[(U64, U64)] = [as (U64, U64):
(0,0); (1,…
-
When a lambda is assigned to a reference with a definite type, or passed as an argument, we want to infer the capability of the resulting object literal based on the left hand side, instead of inferin…
-
#### Is this a bug, feature request, or feedback?
feature request
#### What is the current behavior?
wallaroo-up.sh says `Distro/version combination not supported: ubuntu-focal`
#### What is t…
-
When I run the [main example](https://github.com/Theodus/jennet#named-parameters) on Windows, it's either crash (2%) or just hang after several concurrent requests (98%).
## Expected Behavior
Pony…
-
So here is the log output:
```
2023-10-04T02:18:21.1675656Z 365 tests started, 365 complete: time/PosixDate complete
2023-10-04T02:18:21.1677854Z /__w/ponyc/ponyc/src/libponyrt/asio/epoll.c:364: …
-
In https://tutorial.ponylang.io/expressions/arithmetic.html
+ | add() | wrap around on over-/underflow
+~ | add_unsafe() | Overflow E.g. I32.max_value() +~ I32(1)
But I see
var x10 = U32.max…
-
The "integration.Env(invalid bundle.json in nested dir)" periodically fails. So far twice since it was merged. Here's an example:
https://circleci.com/gh/ponylang/pony-stable/204
Need to figure …
-
We do prebuilts for
- MacOS x86
- Linux x86
- Windows x86
There are others such as FreeBSD, MacOS arm that might have old versions that are unsupported. Anyone not on one of the three support…
-
[Demonstration](https://playground.ponylang.io/?gist=0d260a10117e5ba8e504e2834b9e96a7)
When casting an object using the `as` operator and trying to assign a value to one of its properties (`(object…