rebelwarrior[m] has quit [Remote host closed the connection]
JulesIvanicGitte has quit [Remote host closed the connection]
MarcinMielyskiGi has quit [Remote host closed the connection]
FlorianDoubletGi has quit [Remote host closed the connection]
CharlesOliverNut has quit [Remote host closed the connection]
TestAccount[m] has quit [Remote host closed the connection]
kalenp[m] has quit [Remote host closed the connection]
basshelal[m] has quit [Read error: Connection reset by peer]
RomainManni-Buca has quit [Remote host closed the connection]
liamwhiteGitter[ has quit [Remote host closed the connection]
Hao[m] has quit [Remote host closed the connection]
TimGitter[m]1 has quit [Remote host closed the connection]
olleolleolle[m] has quit [Remote host closed the connection]
edipofederle[m] has quit [Remote host closed the connection]
TimGitter[m] has quit [Remote host closed the connection]
lopex[m] has quit [Read error: Connection reset by peer]
RobertNicholas[m has quit [Remote host closed the connection]
fzakaria[m] has quit [Remote host closed the connection]
MattPattersonGit has quit [Remote host closed the connection]
BlaneDabneyGitte has quit [Remote host closed the connection]
KarolBucekGitter has quit [Remote host closed the connection]
MatrixTravelerbo has quit [Read error: Connection reset by peer]
XavierNoriaGitte has quit [Remote host closed the connection]
architecture[m] has quit [Remote host closed the connection]
wagyourtail[m] has quit [Remote host closed the connection]
dan64[m] has quit [Remote host closed the connection]
donv[m] has quit [Remote host closed the connection]
enebo[m] has quit [Read error: Connection reset by peer]
rtyler[m] has quit [Remote host closed the connection]
JesseChavezGitte has quit [Remote host closed the connection]
mrtommy[m] has quit [Read error: Connection reset by peer]
GGibson[m] has quit [Remote host closed the connection]
mattpatt[m] has quit [Remote host closed the connection]
UweKuboschGitter has quit [Remote host closed the connection]
ahorek[m] has quit [Read error: Connection reset by peer]
byteit101[m] has quit [Remote host closed the connection]
worldnamer[m] has quit [Remote host closed the connection]
kares[m] has quit [Remote host closed the connection]
onghu[m] has quit [Remote host closed the connection]
ChrisSeatonGitte has quit [Remote host closed the connection]
OlleJonssonGitte has quit [Remote host closed the connection]
headius has quit [Remote host closed the connection]
kai[m]1 has quit [Write error: Connection reset by peer]
ahorek[m] has joined #jruby
enebo[m] has joined #jruby
kai[m]1 has joined #jruby
lopex[m] has joined #jruby
MatrixTravelerbo has joined #jruby
CharlesOliverNut has joined #jruby
JesseChavezGitte has joined #jruby
kares[m] has joined #jruby
TimGitter[m] has joined #jruby
MarcinMielyskiGi has joined #jruby
BlaneDabneyGitte has joined #jruby
TimGitter[m]1 has joined #jruby
XavierNoriaGitte has joined #jruby
RobertNicholas[m has joined #jruby
ChrisSeatonGitte has joined #jruby
UweKuboschGitter has joined #jruby
KarolBucekGitter has joined #jruby
mattpatt[m] has joined #jruby
FlorianDoubletGi has joined #jruby
RomainManni-Buca has joined #jruby
kalenp[m] has joined #jruby
MattPattersonGit has joined #jruby
basshelal[m] has joined #jruby
byteit101[m] has joined #jruby
liamwhiteGitter[ has joined #jruby
mrtommy[m] has joined #jruby
JulesIvanicGitte has joined #jruby
edipofederle[m] has joined #jruby
fzakaria[m] has joined #jruby
olleolleolle[m] has joined #jruby
onghu[m] has joined #jruby
Hao[m] has joined #jruby
architecture[m] has joined #jruby
rtyler[m] has joined #jruby
TestAccount[m] has joined #jruby
dan64[m] has joined #jruby
GGibson[m] has joined #jruby
rebelwarrior[m] has joined #jruby
donv[m] has joined #jruby
OlleJonssonGitte has joined #jruby
worldnamer[m] has joined #jruby
wagyourtail[m] has joined #jruby
headius has joined #jruby
fidothe has quit [*.net *.split]
fidothe has joined #jruby
drbobbeaty has quit [Ping timeout: 258 seconds]
drbobbeaty has joined #jruby
<headius> enebo: this is wacky: https://github.com/jruby/jruby/issues/6764
<enebo[m]> lol
<headius> enebo: maybe you can point edipo.federle in the right direction on that bug
<headius> oh you just did
<enebo[m]> ahorek pretty much pointed us to the fact this is not canonicalized but I am confused about basic identity
<enebo[m]> isn't 10/10 == 1/1 for a rational?
<enebo[m]> haha
<enebo[m]> even in MRI?
<headius> yeah I am looking at that
<headius> so it is an issue that we are not reducing it
<headius> it literally does equals on numerator and denominator and they have to match
<enebo[m]> We clearly have a bug I am just wondering if we have two
<enebo[m]> mri26 -e 'p(Rational(1, 1) == Rational(10, 10))'
<headius> $ ruby26 -e 'p Rational(10, 10)'
<headius> (1/1)
<enebo[m]> I just checked and we do pass what I typed
<enebo[m]> haha ok so it gets canonicalized
<enebo[m]> true
<headius> we match that behavior
<headius> but we do not canonicalize this in AST or after
<enebo[m]> so the solution is we need to canonicalize the values somewhere
<enebo[m]> Doing it in the AST would prevent possibly having it happen more than once but doing it however we construct the actual object arguably is no duplicated code and will future proof this happening later
<enebo[m]> lunch
<headius> yes
<ahorek[m]> conversion isn't for free, but https://github.com/jruby/jruby/pull/6765/files should fix the problem
<headius> fix in jit too 😀
<ahorek[m]> good catch :)
<enebo[m]> ahorek: you got a cast mismatch error in IRRuntimeHelpers
<enebo[m]> lol ok I think I was looking at previous commit.
<ahorek[m]> yeah, it should be ready now
<enebo[m]> ahorek: coolio. Just merged it.
<headius> Yay