run() — tailwindcss Function Reference
Architecture documentation for the run() function in walk.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD daea13be_da9d_f3dd_7f4f_74a78b7b3852["run()"] d73ec138_1801_f65e_9f01_1730eee813b7["visit()"] d73ec138_1801_f65e_9f01_1730eee813b7 -->|calls| daea13be_da9d_f3dd_7f4f_74a78b7b3852 7e8149e7_be6d_59ed_5d2d_2547dcd2a85d["get_work()"] daea13be_da9d_f3dd_7f4f_74a78b7b3852 -->|calls| 7e8149e7_be6d_59ed_5d2d_2547dcd2a85d e63c9a61_c0eb_fc8e_2a92_ab9b1af2a4db["run_one()"] daea13be_da9d_f3dd_7f4f_74a78b7b3852 -->|calls| e63c9a61_c0eb_fc8e_2a92_ab9b1af2a4db 49c02037_8827_4771_f819_d581af028837["quit_now()"] daea13be_da9d_f3dd_7f4f_74a78b7b3852 -->|calls| 49c02037_8827_4771_f819_d581af028837 3c9ff46d_5dc3_e0e4_1102_fa9394d62b1e["run()"] daea13be_da9d_f3dd_7f4f_74a78b7b3852 -->|calls| 3c9ff46d_5dc3_e0e4_1102_fa9394d62b1e style daea13be_da9d_f3dd_7f4f_74a78b7b3852 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/ignore/src/walk.rs lines 1619–1625
fn run(mut self) {
while let Some(work) = self.get_work() {
if let WalkState::Quit = self.run_one(work) {
self.quit_now();
}
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does run() do?
run() is a function in the tailwindcss codebase.
What does run() call?
run() calls 4 function(s): get_work, quit_now, run, run_one.
What calls run()?
run() is called by 1 function(s): visit.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free