
Are there any static code analysis tools for Delphi/Pascal?
Feb 11, 2009 · Are there any static code analysis tools for Delphi/Pascal? I have seen plenty of options for C++ and .NET, but nothing for Delphi/Pascal. Ideally something that could be …
c - Choosing a static code analysis tool - Stack Overflow
Aug 6, 2008 · 1 PC-lint/Flexelint are very powerful and useful static analysis tools, and highly configurable, though sadly not free. When first using a tool like this, they can produce huge …
Static code analyzers for C - Stack Overflow
Jun 1, 2016 · 14 Wikipedia maintains a list of static code analysis tools for various languages (including C). Personally, I have used both PC-Lint and Splint. The best choice depends on …
Are there any JavaScript static analysis tools? [closed]
The latest release of Burp includes a new engine for static analysis of JavaScript code. This enables Burp Scanner to report a range of new vulnerabilities, including: DOM-based XSS …
What open source C++ static analysis tools are available?
Sep 27, 2008 · Commercial C++ static analysis products are available. Although having such products are great, the cost is just way too much for students and it is usually rather hard to …
How do I run code analysis for .NET application using Microsoft ...
Oct 22, 2021 · How do I run code analysis for .NET application using Microsoft.CodeAnalysis.NetAnalyzers from a command line interface Asked 4 years ago …
Can static analysis detect memory leaks? - Stack Overflow
May 9, 2016 · A well designed/implemented static analysis tool can detect many cases where some code must have a leak, merely by analyzing the code. Tools like Coverity/Prevent do …
How can I perform static code analysis in PHP? [closed]
Xdebug has code coverage and function traces. My PHP Tracer Tool uses a combined static/dynamic approach, building on Xdebug's function traces. The documentation libraries …
What static analysis tools are available for C#? [closed]
Sep 2, 2008 · What tools are there available for static analysis against C# code? I know about FxCop and StyleCop. Are there others? I've run across NStatic before but it's been in …
statically analysing Lua code for potential errors
Automated static code analysis for Lua is not an easy task in general. However, for a limited set of practical problems it is quite doable. Quick googling for "lua lint" yields these two tools: lua …