Home
Statements should be on separate lines
Rule description
- Statements should be on separate lines
Non-compliant Code Example
private function string TestFunctionCall (string p)
p = "test"; return p; //Non compliant code (Two statements written in the same line)
end function
Compliant Code Example
private function string TestFunctionCall (string p)
p = "test";
return p; //Compliant code
end function