-
-
Notifications
You must be signed in to change notification settings - Fork 418
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ANSITerm makes the compiler crash #2097
Comments
Here is the compiler log: |
@pandaman64 I can't reproduce the crash with your minimal example. You appear to have provided the version I gave to you that fixes the problem. Can you verify that is the case? |
Ok, this crashes for me locally on OSX. @pandaman64 what platform are you using? What LLVM? |
This is odd... use "net/http"
use "term"
use "promises"
class Notify
fun ref apply(line: String, prompt: Promise[String]) =>
prompt(line)
fun ref tab(line: String): Seq[String] box => Array[String]
class SessionHandler
fun tag apply(session: HTTPSession tag): HTTPHandler =>
object ref is HTTPHandler end
actor Main
new create(env: Env) =>
try
let client = HTTPClient(env.root as AmbientAuth, None)
let url = URL.build("")?
let handler = SessionHandler
let request = Payload.request("", url)
client(consume request, consume handler)?
end
let readline = Readline(Notify, env.out)
let terminal = ANSITerm(consume readline, env.input) commenting out either
or
makes it compile for me |
backtrace:
|
I'm using llvm 3.9 provided by apt. |
Pinging @Praetonus, as this involves @SeanTAllen the odd behaviour you're noting is likely because the crash happens after the |
I've found the problem. It's trivial, I'll make a PR ASAP. |
This change fixes an assertion failure that occurred when generating forwarding functions boxing non-ref tuples. The tuple AST without reference capabilities was being used, which could be a non-reachable type, resulting in an assertion failure in `gen_box`. Closes ponylang#2097.
This change fixes an assertion failure that occurred when generating forwarding functions boxing non-ref tuples. The tuple AST without reference capabilities was being used, which could be a non-reachable type, resulting in an assertion failure in `gen_box`. Closes #2097.
@pandaman64 this should be fixed on master. |
It compiles! Thanks! |
I'm trying to implement a twitter client with Pony, and I want to take in user inputs to tweet it.
So I was trying ANSITerm to read a line from the keyboard, but the compiler crashed during code generation when I introduced it.
Here is the minimal code of the crash:
https://github.com/pandaman64/pony-twitter/blob/c0076ef0e507c895b6abf87a60d3425dbf3758c5/src.pony
Expected result: it compiles
Actual result: the compiler crashes during code generation
If you comment out the last line, the compiler will not crash.
Note that try..end before Readline is necessary to reproduce the bug. If you remove them, the program successfully compiles.
ponyc -v
showsand my ponyc runs on Ubuntu 16.04.2 LTS on Windows (I'm using Bash on Ubuntu on Windows).
The crash also happens when I ran ponyc of this version:
on Ubuntu 16.04.1 LTS on VMWare.
Thanks,
The text was updated successfully, but these errors were encountered: