Would be nice if strings were also considered for folding.
Example:
string FOO = "bar"; default { state_entry() { llOwnerSay(FOO); } }
would then optimize to:
default { state_entry() { llOwnerSay("bar"); } }
Log in to post a comment.