jemc changed the topic of #ponylang to: Welcome! Please check out our Code of Conduct => https://github.com/ponylang/ponyc/blob/master/CODE_OF_CONDUCT.md | Public IRC logs are available => http://irclog.whitequark.org/ponylang | Please consider participating in our mailing lists => https://pony.groups.io/g/pony
nisanharamati has quit [*.net *.split]
nisanharamati has joined #ponylang
<endformationage> Hmm. I've had no luck reproducing a simple case :(. Guess I'll have to learn how to use lldb again.
rkallos has quit [Quit: WeeChat 1.7.1]
rkallos has joined #ponylang
rkallos has quit [*.net *.split]
nisanharamati has quit [*.net *.split]
endformationage has quit [*.net *.split]
PrsPrsBK has quit [*.net *.split]
vaninwagen has quit [*.net *.split]
dom96 has quit [*.net *.split]
Amun_Ra has quit [*.net *.split]
strmpnk has quit [*.net *.split]
ichimaru has quit [*.net *.split]
acarrico has quit [*.net *.split]
inara has quit [*.net *.split]
Candle has quit [*.net *.split]
oldsk00l has quit [*.net *.split]
Nilium has quit [*.net *.split]
jmiven has quit [*.net *.split]
SenasOzys has quit [*.net *.split]
doublec has quit [*.net *.split]
Licenser has quit [*.net *.split]
so has quit [*.net *.split]
brainproxy has quit [*.net *.split]
Bombe has quit [*.net *.split]
hmans has quit [*.net *.split]
bbhoss has quit [*.net *.split]
cquinn has quit [*.net *.split]
DDR has quit [*.net *.split]
CcxWrk has quit [*.net *.split]
jtfmumm has quit [*.net *.split]
m6w6 has quit [*.net *.split]
d_run has quit [*.net *.split]
jonrh has quit [*.net *.split]
Robdor has quit [*.net *.split]
christianpoveda has quit [*.net *.split]
Viknet has quit [*.net *.split]
Schwarzbaer has quit [*.net *.split]
emilbayes has quit [*.net *.split]
slfritchie has quit [*.net *.split]
mrallen1 has quit [*.net *.split]
surma has quit [*.net *.split]
SeanTAllen has quit [*.net *.split]
jhei has quit [*.net *.split]
wyvern has quit [*.net *.split]
blanu has quit [*.net *.split]
ericbmerritt_ has quit [*.net *.split]
diginet has quit [*.net *.split]
_whitelogger has joined #ponylang
nisanharamati has quit [Quit: Connection closed for inactivity]
_whitelogger has joined #ponylang
OtakuSenpai has joined #ponylang
OtakuSenpai is now known as Nawab
<vaninwagen> endformationage: you have some code to share so we can investigate that mysterious assertion? I have a speaking dog to my side and usually the code samples tell us their evil plan when they are so sure they already won, but we all know they will not.
_whitelogger has joined #ponylang
Nawab has quit [Read error: Connection reset by peer]
Nawab has joined #ponylang
blanu has left #ponylang [#ponylang]
jmiven has joined #ponylang
endformationage has quit [Ping timeout: 256 seconds]
SenasOzys has quit [Remote host closed the connection]
SenasOzys has joined #ponylang
NeuwDk_ has joined #ponylang
<NeuwDk_> Hello. Is it true that there's no character type in pony? I can't seem to find it in the docs.
<vaninwagen> NeuwDk_: you have character literals that map to integer types
<vaninwagen> There is no type for character itself, that is true.
<vaninwagen> It is usually handled either as simple U8 or as U32 e.g. when encoded as utf32
<NeuwDk_> Okay. Thank you! I'm just so used to having the character type, so I was a bit confused.
SenasOzys has quit [Ping timeout: 252 seconds]
<vaninwagen> Do you refer to character as something like an encoding-independent grapheme thingy or something simpler?
<NeuwDk_> I'm just trying to parse HTTP requests iterating over the individual characters. So I think it's just utf8; so nothing fancy.
SenasOzys has joined #ponylang
<vaninwagen> Interesting, i am currently fiddling with https://github.com/ponylang/http
<vaninwagen> Trying to setup some benchmarks
<vaninwagen> Any help is appreciated btw
<NeuwDk_> That sounds very interesting! Right now I'm using this project as a learning experience to learn a bit of pony and the http protocol, so I'm probably not much help now.
<vaninwagen> Take your time :)
NeuwDk_ has quit [Ping timeout: 252 seconds]
alxs has joined #ponylang
alxs has quit [Quit: Computer's gone to sleep. ZZZzzz…]
NeuwDk has joined #ponylang
NeuwDk has quit [Ping timeout: 252 seconds]
Nawab has quit [Read error: Connection reset by peer]
Nawab has joined #ponylang
endformationage has joined #ponylang
pzel has joined #ponylang
alxs has joined #ponylang
alxs has quit [Quit: Computer's gone to sleep. ZZZzzz…]
SenasOzys has quit [Ping timeout: 244 seconds]
SenasOzys has joined #ponylang
alxs has joined #ponylang
alxs has quit [Quit: Computer's gone to sleep. ZZZzzz…]
alxs has joined #ponylang
alxs has quit [Quit: Computer's gone to sleep. ZZZzzz…]
Nawab has quit [Quit: Leaving]
betawaffle has joined #ponylang
NeuwDk has joined #ponylang
NeuwDk has quit [Ping timeout: 252 seconds]
alxs has joined #ponylang
pzel has quit [Ping timeout: 252 seconds]
UNIXn3rd has joined #ponylang
pzel has joined #ponylang
alxs has quit [Quit: Computer's gone to sleep. ZZZzzz…]
<endformationage> SeanTAllen, vaninwagen: Here's a backtrace from running the compiler in LLBD: https://gist.github.com/patternspandemic/d7cf7b0605cc0c15c11fbcac9f615d20
<SeanTAllen> Interesting, do you have issue open that you can add that to?
<endformationage> I will open an issue.
pzel has quit [Ping timeout: 264 seconds]
<endformationage> Frame #3 is where the problem occurs. I probed the ast_t* type, and it reveals `TK_TYPEPARAMREF` as the offending token_id.
pzel has joined #ponylang
<endformationage> vaninwagen: I will make note of the source from which I encountered the failed assert in the issue, as I've not been able to replicate more simply.
enilsen16 has joined #ponylang
<endformationage> vaninwagen: here ya go! https://github.com/ponylang/ponyc/issues/2867
pzel has quit [Ping timeout: 252 seconds]
mmmnootka has joined #ponylang
mmmnootka has quit [Quit: Leaving.]