We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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