Home / Function/ it_should_stop_expanding_once_we_hit_a_wildcard() — tailwindcss Function Reference

it_should_stop_expanding_once_we_hit_a_wildcard() — tailwindcss Function Reference

Architecture documentation for the it_should_stop_expanding_once_we_hit_a_wildcard() function in glob.rs from the tailwindcss codebase.

Entity Profile

Dependency Diagram

graph TD
  31336d39_6a8f_9b2e_6b67_dc85b37e2751["it_should_stop_expanding_once_we_hit_a_wildcard()"]
  d6210432_49e5_7bfc_e9c4_6cebc740bb16["glob.rs"]
  31336d39_6a8f_9b2e_6b67_dc85b37e2751 -->|defined in| d6210432_49e5_7bfc_e9c4_6cebc740bb16
  1120e755_7352_a393_37fa_f89d503fa82e["create_folders()"]
  31336d39_6a8f_9b2e_6b67_dc85b37e2751 -->|calls| 1120e755_7352_a393_37fa_f89d503fa82e
  fc119bfa_39ba_8a9d_993d_92d6a3386600["test()"]
  31336d39_6a8f_9b2e_6b67_dc85b37e2751 -->|calls| fc119bfa_39ba_8a9d_993d_92d6a3386600
  style 31336d39_6a8f_9b2e_6b67_dc85b37e2751 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

crates/oxide/src/glob.rs lines 516–539

    fn it_should_stop_expanding_once_we_hit_a_wildcard() {
        let base = create_folders(&["projects/bar/example", "projects/foo/example"]);

        let actual = test(
            &base,
            &[GlobEntry {
                base: "/projects".to_string(),
                pattern: "{foo,bar}/example/**/{baz,qux}/*.html".to_string(),
            }],
        );

        let expected = vec![
            GlobEntry {
                base: "/projects/bar/example".to_string(),
                pattern: "{**/baz/*.html,**/qux/*.html}".to_string(),
            },
            GlobEntry {
                base: "/projects/foo/example".to_string(),
                pattern: "{**/baz/*.html,**/qux/*.html}".to_string(),
            },
        ];

        assert_eq!(actual, expected,);
    }

Domain

Subdomains

Frequently Asked Questions

What does it_should_stop_expanding_once_we_hit_a_wildcard() do?
it_should_stop_expanding_once_we_hit_a_wildcard() is a function in the tailwindcss codebase, defined in crates/oxide/src/glob.rs.
Where is it_should_stop_expanding_once_we_hit_a_wildcard() defined?
it_should_stop_expanding_once_we_hit_a_wildcard() is defined in crates/oxide/src/glob.rs at line 516.
What does it_should_stop_expanding_once_we_hit_a_wildcard() call?
it_should_stop_expanding_once_we_hit_a_wildcard() calls 2 function(s): create_folders, test.

Analyze Your Own Codebase

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

Try Supermodel Free