Home / Function/ assert_extract_sorted_css_variables() — tailwindcss Function Reference

assert_extract_sorted_css_variables() — tailwindcss Function Reference

Architecture documentation for the assert_extract_sorted_css_variables() function in mod.rs from the tailwindcss codebase.

Function rust RustCore MachineExtractor calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  b2480792_b5cc_da62_de72_180a0ed2c5cd["assert_extract_sorted_css_variables()"]
  3adb1508_24d5_55ce_33d5_1f8363241992["test_extract_css_variables()"]
  3adb1508_24d5_55ce_33d5_1f8363241992 -->|calls| b2480792_b5cc_da62_de72_180a0ed2c5cd
  ba82056e_1ee6_37b6_efbc_82b2eb5c14f1["extract_sorted_css_variables()"]
  b2480792_b5cc_da62_de72_180a0ed2c5cd -->|calls| ba82056e_1ee6_37b6_efbc_82b2eb5c14f1
  style b2480792_b5cc_da62_de72_180a0ed2c5cd fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

crates/oxide/src/extractor/mod.rs lines 304–314

    fn assert_extract_sorted_css_variables(input: &str, expected: Vec<&str>) {
        let actual = extract_sorted_css_variables(input);

        let mut expected = expected;
        expected.sort();

        if actual != expected {
            dbg!(&input);
        }
        assert_eq!(actual, expected);
    }

Domain

Subdomains

Frequently Asked Questions

What does assert_extract_sorted_css_variables() do?
assert_extract_sorted_css_variables() is a function in the tailwindcss codebase.
What does assert_extract_sorted_css_variables() call?
assert_extract_sorted_css_variables() calls 1 function(s): extract_sorted_css_variables.
What calls assert_extract_sorted_css_variables()?
assert_extract_sorted_css_variables() is called by 1 function(s): test_extract_css_variables.

Analyze Your Own Codebase

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

Try Supermodel Free