mookie has quit [Read error: Connection reset by peer]
mookie has joined #crystal-lang
ur5us has quit [Ping timeout: 250 seconds]
void09 has quit [Quit: void09]
void09 has joined #crystal-lang
<riza>
is there an easy way to get the compiler to tell me where the method I'm calling is defined?
notzmv has quit [Remote host closed the connection]
<riza>
I'm writing a test against a stdlib modification I've made -- the spec is running fine but I can't get the change I've made to do anything. Even dropping a 'raise' at the top of the method yields no change
<FromGitter>
<Blacksmoke16> calling a diff overload?
<riza>
Oh I see. The stdlib specs don't run against the source like they do in a typical project, they run against the current compiler. So it's a 2 step process, make crystal and then bin/crystal spec ...?
<FromGitter>
<Blacksmoke16> prob could do something with `CRYSTAL_PATH`
<FromGitter>
<Blacksmoke16> and point that at your local compiler stdlib versus the one included with the installed package
<riza>
I have no problem using bin/crystal to make that work. I just didn't realize that it required doing that.