mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
12 lines
538 B
HTML
12 lines
538 B
HTML
<html>
|
|
<body>
|
|
Reports arithmetic expressions with the excessive number of terms. Such expressions might be hard to understand and might contain errors.
|
|
<p>Parameters, field references, and other primary expressions are counted as a term.</p>
|
|
<p><b>Example:</b>
|
|
<pre><code>int calc(int a, int b) {
|
|
return a + a + a + b + b + b + b; // The line contains 7 terms and will be reported.
|
|
}</code></pre>
|
|
<!-- tooltip end -->
|
|
<p>Use the field below to specify a number of terms allowed in arithmetic expressions.</p>
|
|
</body>
|
|
</html> |