-
The following segfaults when attempting to serialize a class with a single String field.
```
use "serialise"
actor Main
new create(env: Env) =>
try
let auth = env.root as Ambient…
-
This was reported via IRC. You can see it in action at:
http://pony-playpen.lietar.net/?gist=9f9c5a11c938dd277f746f8cac4b4a4c
```pony
trait TestTrait
fun test(): String =>
this…
-
This came up when working on [my CRDT package](https://github.com/jemc/pony-crdt).
If I have a type parameter that is narrowed by an iftype constraint within a block, that constraint doesn't apply …
-
Change the language to require explicit indication of all partial calls.
https://github.com/ponylang/rfcs/blob/master/text/0039-explicit-partial-calls.md
-
```pony
class C
fun c() => None
actor Main
new create(env: Env) =>
foo[C box](env, C)
fun foo[A](env: Env, x: A) =>
iftype A /Users/paul/Projects/ponyc/packages…
-
```pony
primitive A
primitive B
actor Main
new create(env: Env) =>
let x = kaboom(A)
DoNotOptimise[U64](x)
fun kaboom(p: (A | B)): U64 =>
var t: (U64, U64) = if p is B then…
-
Any program which refers to `this` explicitly in a constructor before the object is fully initialised causes an assertion failure. Implicit `this` is fine though.
```pony
actor Main
var f: U8
…
-
After the initializer worker has recovered from a crash, if any of the other workers crashes and recovers, this leads to a cluster-wide failure.
To reproduce:
0. build `sequence_window`
```bash…
-
I'm having trouble building pony-zmq with pony 0.12.2. Thanks. Tom.
Building builtin -> /usr/local/lib/pony/0.12.2-dc26414/packages/builtin
Building zmq/test -> /Users/tjohnson/Projects/Pony/po…
-
If Homebrew was updated on Aug 10-11th 2016 and `brew update` always says `Already up-to-date.` you need to run: `cd "$(brew --repo)" && git fetch && git reset --hard origin/master && brew update`.
…