mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
13 lines
349 B
HTML
13 lines
349 B
HTML
<html>
|
|
<body>
|
|
Reports ternary conditional expressions that are nested inside other conditional expressions.
|
|
Such nested conditionals may be very confusing. "Elvis" expressions are counted as conditionals
|
|
for purpose of this inspection.
|
|
<p><b>Example:</b></p>
|
|
<pre>
|
|
<code>
|
|
return (condition ? "result" : null) ?: "fail"
|
|
</code>
|
|
</pre>
|
|
</body>
|
|
</html> |