Laytan
Laytan
You can't currently set the stack size in `core:thread`. I will have a look at the code and see why it is using so much stack space, and if there...
I'm also thinking of upping the stack size, like my patch above, on macOS. To be more consistent between targets.
Each invocation of `internal_resolve_type_expression` is putting `114` instances of `Symbol` on the stack, each weighing 440 bytes, which gets you to the ~50kb in stack space. When optimised, it goes...
Yeah it definitely isn't ideal, and I don't know if we can do something about it. The main issue here is multiple returns. There is a lot of waste going...
I don't think it's switch statements, but just excessive stack usage in general at this point.
This is not correct, `==` on strings does not just check the pointer, but also the content.
Also check the content?
Or error in the frontend that this is not a valid thing
I'm going to close this because I am not interested in holding your hand here
Ah you are right, my bad, I didn't clock that this was only for comparing against nil.