staticrelated
Staticrelated is a concept in software engineering and systems analysis that denotes a metric of static-relatedness within a software system. It refers to the degree to which components are connected through static dependencies—those resolved during compilation or application startup—such as imports, type references, macro expansions, and configuration constants, as opposed to dynamic or runtime connections like reflection or dynamic module loading.
In practice, staticrelated is used to assess how tightly coupled a project is via static links, and
Measurement of staticrelated is typically derived from static analysis. Tools parse source code and configuration files
Limitations include the fact that staticrelated only captures static connections and may miss important dynamic behavior.
See also: static analysis, dependency graph, modularity, software metrics.