Development Methods & Design

Static Analysis

English

Overview

A technique that analyzes source code to detect problems without actually running the program.

Details

It can mechanically catch things like unused variables, potential bugs, and coding standard violations before the code is ever run or committed. It's often built into a CI/CD pipeline to catch problematic code before it can reach production.

More Programming terms