Crates.io | oxc_cfg |
lib.rs | oxc_cfg |
version | 0.83.0 |
created_at | 2024-06-19 05:48:56.650226+00 |
updated_at | 2025-08-29 06:53:05.481955+00 |
description | A collection of JavaScript tools written in Rust. |
homepage | https://oxc.rs |
repository | https://github.com/oxc-project/oxc |
max_upload_size | |
id | 1276541 |
size | 53,684 |
Control Flow Graph construction and analysis for JavaScript and TypeScript.
This crate provides data structures and algorithms for building and analyzing Control Flow Graphs (CFGs) from AST nodes. CFGs are essential for advanced static analysis, optimization, and understanding program flow.
The CFG organizes code into basic blocks - sequences of instructions with:
The CFG integrates with semantic analysis to provide comprehensive program understanding.