Home / Function/ errored_partial() — tailwindcss Function Reference

errored_partial() — tailwindcss Function Reference

Architecture documentation for the errored_partial() function in dir.rs from the tailwindcss codebase.

Entity Profile

Dependency Diagram

graph TD
  21a6fb02_e5bd_098f_f759_bff8dbec39c3["errored_partial()"]
  510a4ebc_9a2a_672a_2d6d_a56dabd1134b["dir.rs"]
  21a6fb02_e5bd_098f_f759_bff8dbec39c3 -->|defined in| 510a4ebc_9a2a_672a_2d6d_a56dabd1134b
  0b6611f3_9e1d_0a3b_157b_ef9bb2bc3d89["tmpdir()"]
  21a6fb02_e5bd_098f_f759_bff8dbec39c3 -->|calls| 0b6611f3_9e1d_0a3b_157b_ef9bb2bc3d89
  c80dd0da_2638_ff74_8c3d_7986668a41c5["mkdirp()"]
  21a6fb02_e5bd_098f_f759_bff8dbec39c3 -->|calls| c80dd0da_2638_ff74_8c3d_7986668a41c5
  195d465d_cb01_6c11_b964_d3f792d97f6f["path()"]
  21a6fb02_e5bd_098f_f759_bff8dbec39c3 -->|calls| 195d465d_cb01_6c11_b964_d3f792d97f6f
  fe4c91f2_5b95_b103_1edb_19b3ea6da080["wfile()"]
  21a6fb02_e5bd_098f_f759_bff8dbec39c3 -->|calls| fe4c91f2_5b95_b103_1edb_19b3ea6da080
  ea4007ac_a311_c454_45f6_4e3ba7192b1a["build()"]
  21a6fb02_e5bd_098f_f759_bff8dbec39c3 -->|calls| ea4007ac_a311_c454_45f6_4e3ba7192b1a
  5f1e446c_b1a6_cd2c_2707_77480f9eaad4["add_child()"]
  21a6fb02_e5bd_098f_f759_bff8dbec39c3 -->|calls| 5f1e446c_b1a6_cd2c_2707_77480f9eaad4
  df4238ce_ff67_ee56_17ce_54ac1d2fa297["matched()"]
  21a6fb02_e5bd_098f_f759_bff8dbec39c3 -->|calls| df4238ce_ff67_ee56_17ce_54ac1d2fa297
  style 21a6fb02_e5bd_098f_f759_bff8dbec39c3 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

crates/ignore/src/dir.rs lines 1126–1134

    fn errored_partial() {
        let td = tmpdir();
        mkdirp(td.path().join(".git"));
        wfile(td.path().join(".gitignore"), "{foo\nbar");

        let (ig, err) = IgnoreBuilder::new().build().add_child(td.path());
        assert!(err.is_some());
        assert!(ig.matched("bar", false).is_ignore());
    }

Domain

Subdomains

Frequently Asked Questions

What does errored_partial() do?
errored_partial() is a function in the tailwindcss codebase, defined in crates/ignore/src/dir.rs.
Where is errored_partial() defined?
errored_partial() is defined in crates/ignore/src/dir.rs at line 1126.
What does errored_partial() call?
errored_partial() calls 7 function(s): add_child, build, matched, mkdirp, path, tmpdir, wfile.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free