-
Updating some code that compiled with `0.9.0` and came across this failure.
Sorry, no code example. Tried to narrow it down but I can't spend more time at the moment. Just wanted to pass the info a…
-
```pony
use "format"
use "files"
actor DirectoryTraverser
be traverse(target: String val) =>
let directory = Directory.open(target)
actor Main
new create(env: Env) =>
env.out.p…
-
-
class/actor/method docstrings is not properly rendered as markdown.
My best guess is that the indentation is not removed and so iterally everything between opening and closing ```"""``` is considered…
-
With the latest ponyc on master (0.14.0-719e3870 [release]), compiling the following snippet results in a compiler assertion:
```
class Test
new create() =>
try
match true
| le…
-
Using the 0.16.0 compiler, execute the code in the `noworky` branch of [this github repo](https://github.com/autodidaddict/ponymud/blob/noworky/core/player.pony#L63-L68). Using the displayed port, tel…
-
-
I ran into this odd error with `iftype`, where it is disallowing an assignment to an iftype-narrowed reference ~~~that should be allowed~~~.
EDIT: @plietar demonstrated why this *shouldn't* be allo…
-
When compiling following code,
```pony
actor Main
new create(env: Env) =>
try
let n = 0 as I64
end
```
compiler crashes and shows stacktrace.
```
e:\github\ponyc\src\li…
-
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…