Home / Function/ it_should_keep_the_negation_symbol_for_all_new_patterns() — tailwindcss Function Reference

it_should_keep_the_negation_symbol_for_all_new_patterns() — tailwindcss Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  af2ab9a8_54d8_5ed0_a264_a364c1856996["it_should_keep_the_negation_symbol_for_all_new_patterns()"]
  06f0538c_a174_ca7e_0254_932670828484["glob.rs"]
  af2ab9a8_54d8_5ed0_a264_a364c1856996 -->|defined in| 06f0538c_a174_ca7e_0254_932670828484
  671ea48f_f03a_71df_9af3_69fa925411c8["create_folders()"]
  af2ab9a8_54d8_5ed0_a264_a364c1856996 -->|calls| 671ea48f_f03a_71df_9af3_69fa925411c8
  3b14a9e7_5d43_bc68_e82b_f61c14c46ab9["test()"]
  af2ab9a8_54d8_5ed0_a264_a364c1856996 -->|calls| 3b14a9e7_5d43_bc68_e82b_f61c14c46ab9
  style af2ab9a8_54d8_5ed0_a264_a364c1856996 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

crates/oxide/src/glob.rs lines 542–561

    fn it_should_keep_the_negation_symbol_for_all_new_patterns() {
        let base = create_folders(&["projects"]);

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

        let expected = vec![GlobEntry {
            base: "/projects".to_string(),
            // TODO: This is wrong, because `!` should be in front. But right now we don't support
            // `@source "!../foo/bar";` anyway.
            pattern: "{!bar/*.html,!foo/*.html}".to_string(),
        }];

        assert_eq!(actual, expected,);
    }

Domain

Subdomains

Frequently Asked Questions

What does it_should_keep_the_negation_symbol_for_all_new_patterns() do?
it_should_keep_the_negation_symbol_for_all_new_patterns() is a function in the tailwindcss codebase, defined in crates/oxide/src/glob.rs.
Where is it_should_keep_the_negation_symbol_for_all_new_patterns() defined?
it_should_keep_the_negation_symbol_for_all_new_patterns() is defined in crates/oxide/src/glob.rs at line 542.
What does it_should_keep_the_negation_symbol_for_all_new_patterns() call?
it_should_keep_the_negation_symbol_for_all_new_patterns() 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