Remove constant function calls
Takes something like this:
local function getFoo()
return "foo"
end
local var = getFoo()
And turns into:
local function getFoo()
return "foo"
end
local var = "foo"
The function itself does not have to be cleaned up by this rule, it can be left to a rule that removes unused variables (#26)