Closed q66 closed 10 years ago
Hey,
your constant eval module checks for 0 in division, which is unnecessary - it will work either way - and keeping the check there results in compile errors with both operands being constant in code like local x = 1 / 0. I suggest you remove it.
local x = 1 / 0
Waiting for the pull request ;-)
I will send one when I get home.
Hey,
your constant eval module checks for 0 in division, which is unnecessary - it will work either way - and keeping the check there results in compile errors with both operands being constant in code like
local x = 1 / 0
. I suggest you remove it.