plugin-lua
plugin-lua copied to clipboard
Necessary parentheses are removed
Input:
function x:PosToAbsolute( x, y )
return ( x - 1 ) * self.width, ( y - 1 ) * self.height
end
Output:
function x:PosToAbsolute( x, y )
return x - 1 * self.width, y - 1 * self.height -- <<== no parentheses
end