Home / Function/ test_gleam_syntax() — tailwindcss Function Reference

test_gleam_syntax() — tailwindcss Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  6e98c3d6_d222_93a7_77cb_f680443b2c3c["test_gleam_syntax()"]
  0fcd0fda_f6d1_052f_9575_133f5b2763a7["mod.rs"]
  6e98c3d6_d222_93a7_77cb_f680443b2c3c -->|defined in| 0fcd0fda_f6d1_052f_9575_133f5b2763a7
  0b7ae7d0_7e0e_b8cd_767a_15a18e3d04c9["assert_extract_sorted_candidates()"]
  6e98c3d6_d222_93a7_77cb_f680443b2c3c -->|calls| 0b7ae7d0_7e0e_b8cd_767a_15a18e3d04c9
  style 6e98c3d6_d222_93a7_77cb_f680443b2c3c fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

crates/oxide/src/extractor/mod.rs lines 713–723

    fn test_gleam_syntax() {
        for (input, expected) in [
            (r#"html.div([attribute.class("py-10")], [])"#, vec!["py-10"]),
            (
                r#"html.div([attribute.class("hover:py-10")], [])"#,
                vec!["hover:py-10"],
            ),
        ] {
            assert_extract_sorted_candidates(input, expected);
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does test_gleam_syntax() do?
test_gleam_syntax() is a function in the tailwindcss codebase, defined in crates/oxide/src/extractor/mod.rs.
Where is test_gleam_syntax() defined?
test_gleam_syntax() is defined in crates/oxide/src/extractor/mod.rs at line 713.
What does test_gleam_syntax() call?
test_gleam_syntax() calls 1 function(s): assert_extract_sorted_candidates.

Analyze Your Own Codebase

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

Try Supermodel Free