Arhik

Results 51 comments of Arhik

Preview of work on Pi, Upsilon, Phi, PhiC, GotoIfNot, ReturnNodes. ![image](https://github.com/JuliaLang/julia/assets/5755530/f58109f4-0ed4-4bd9-a9f3-97f49a08daba)

source code for above output ```julia using Revise using Debugger Revise.track(Core.Compiler) function goo(t, w) return sum(t) + w end function foo(x, z) y = x[1] + goo(x, z) return goo([sin(y),...

Highlighting ssa values on the left is also useful; specially when `Any` hint is outside the view. Not part of this PR but can be done after feedback. ![Screenshot 2024-05-17...

This is without left highlighting for comparison. ![Screenshot 2024-05-17 at 9 19 52 AM](https://github.com/JuliaLang/julia/assets/5755530/e8c52837-523e-4d93-9ec4-bc8346712877)

@gbaraldi If this needs more discussion let me know.

@oscardssmith This is the least invasive commit with computational overhead on `getproperty` that I could come up with. I see a `10ns` increase in `getproperty` calls. On mac M1 its...

@KristofferC I tried to fit other Exceptions available. I will take a look again. Even if there is an existing exception that fits the purpose, we will have to filter...

I like `FieldError`. Going with it.

> This looks pretty good! It should have tests to make sure the new error is being thrown and the hint looks right. Added tests. Let me know if they...