Top "Static-analysis" questions

"Static Analysis" refers to the software tools (or their use) to analyze application code for arbitrary properties, such as errors (uninitialized variables, possible SQL injection-attack, is this code-dead, can an argument be null,...) or structure (what is the call graph for this code?

How to build a static code analysis tool?

I m in process of understanding and building a static code analysis tool for a proprietary language from a big …

static-analysis
Static analysis tool to detect ABI breaks in C++

It's not very hard to break binary backwards-compatibility of a DSO/shared library with a C++ interface. That said, is …

c++ shared-libraries static-analysis backwards-compatibility
"intermediate directory contains no translation units" error while Coverity Static Analysis of my Java project

Recieved following warning while capturing the build for my project on Coverity. [WARNING] No files were emitted. This may be …

java static-analysis coverity
Static Actionscript code analysis possibilities

I want to see class, function and variable/property, dependencies visually, like NDepend, but for ActionScript 2 or AS3 code. Any …

actionscript-3 actionscript code-analysis static-analysis
clang-tidy cmake exclude file from check

I have a dependency as source in my project that I have no control over. I'm using cmake's clang-tidy integration …

cmake static-analysis cppcheck clang-tidy
FindBugs for .NET

In Java is this nice tool called FindBugs. Is there something similar in .Net?

.net static-analysis findbugs
Lint-checking tools for Objective-C development

Large projects with multiple developers often result in code that is inconsistent in style. I am looking for a lint-like …

objective-c cocoa static-analysis lint
Dependencies graph for large PHP application

I've recently inherited a large PHP application with NO objects/modules/namespaces...only a lot of files containing functions. Of …

php graph dependencies static-analysis codesniffer
Why do code quality discussions evoke strong reactions?

I like my code being in order, i.e. properly formatted, readable, designed, tested, checked for bugs, etc. In fact …

unit-testing code-analysis static-analysis software-quality