We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
It's not necessary concatenate two string literals at runtime.
Noncompliant code:
var := 'a'||'b'; var2 := concat('a', 'b');
Compliant code:
var := 'ab'; var2 := 'ab';
Exception: it shouldn't register an issue if the two string are on different lines:
var := 'aaaa'|| 'bbb';
Activity
felipebz commentedon May 3, 2019
Exception: it shouldn't register an issue if the two string are on different lines: