mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-02 06:42:02 +00:00
Control flow graph: setup (#17064)
This PR contains the scaffolding for a new control flow graph implementation, along with its application to the `unreachable` rule. At the moment, the implementation is a maximal over-approximation: no control flow is modeled and all statements are counted as reachable. With each additional statement type we support, this approximation will improve. So this PR just contains: - A `ControlFlowGraph` struct and builder - Support for printing the flow graph as a Mermaid graph - Snapshot tests for the actual graphs - (a very bad!) reimplementation of `unreachable` using the new structs - Snapshot tests for `unreachable` # Instructions for Viewing Mermaid snapshots Unfortunately I don't know how to convince GitHub to render the Mermaid graphs in the snapshots. However, you can view these locally in VSCode if you install an extension that supports Mermaid graphs in Markdown, and then add this to your `settings.json`: ```json "files.associations": { "*.md.snap": "markdown", } ```
This commit is contained in:
parent
0073fd4945
commit
aa93005d8d
24 changed files with 775 additions and 6244 deletions
|
@ -1,6 +1,7 @@
|
|||
pub mod analyze;
|
||||
mod binding;
|
||||
mod branches;
|
||||
pub mod cfg;
|
||||
mod context;
|
||||
mod definition;
|
||||
mod globals;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue