String compile time constants (internalized-strings) and literals can be compared with the ==, as they are assigned the same reference at compile-time if they are equal somehow.
Does this mean that compiling code consisting of n String literals takes n log(n) time to compile?
I ask this question here because someone might already know the answer and I'm not certain I can write a test that measures the effect in a reliable, reproducable or significant way. Or that this test would reflect real world constrains etc..
I'm going to publish any test cases I can come up with though, feel free to suggest some, I will implement them as soon as I can find the time.