About 233,000 results
Open links in new tab
  1. 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 …

  2. static analysis - Measuring the complexity of SQL statements

    The complexity of methods in most programming languages can be measured in cyclomatic complexity with static source code analyzers. Is there a similar metric for measuring the …

  3. What is the difference between static analysis and semantic …

    Static analysis means that the analysis runs only for a source code, does not need to run a code or provide testing inputs. Another kind in this category is dynamic analysis which actually runs …

  4. static analysis - Dead code identification (C++) - Stack Overflow

    I'm looking for a tool that will identify this by static analysis. This question: Dead code detection in legacy C/C++ project suggests using code coverage tools.

  5. static and dynamic code analysis - Stack Overflow

    The term "static analysis" means that the analysis does not actually run a code. On the other hand, "dynamic analysis" runs a code and also requires some kinds of real test inputs.

  6. static analysis - How to generate a call graph for C++ code - Stack ...

    Statically computing an accurate C++ call graph is hard, because you need a precise language parser, correct name lookup, and a good points-to analyzer that honors the language …

  7. What tools do you use for static code analysis? [closed]

    This question on Cyclomatic Complexity made me think more about static code analysis. Analyzing code complexity and consistency is occasionally useful, and I'd like to start doing it …

  8. How to get (sub)class name from a static method in Python?

    Aug 29, 2010 · Replace the staticmethod with a classmethod. This will be passed the class when it is called, so you can get the class name from that.

  9. These tags need some [static-analysis] - Meta Stack Overflow

    So we've got: code-analysis - 1220 questions the process of analyzing the code of the application to discover, review, validate or verify certain properties of the application. static-analysis ...

  10. 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 …