Home / Function/ parse_arbitrary_end() — tailwindcss Function Reference

parse_arbitrary_end() — tailwindcss Function Reference

Architecture documentation for the parse_arbitrary_end() function in named_variant_machine.rs from the tailwindcss codebase.

Function rust OxideCore Extractor calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  073edc28_8014_d911_5d42_44c6053f21e4["parse_arbitrary_end()"]
  4a2bd495_e39e_9dfe_3594_fdfdcd7f6d7f["next()"]
  4a2bd495_e39e_9dfe_3594_fdfdcd7f6d7f -->|calls| 073edc28_8014_d911_5d42_44c6053f21e4
  35b2adf8_a27b_5aee_3865_21fb048c97fb["advance()"]
  073edc28_8014_d911_5d42_44c6053f21e4 -->|calls| 35b2adf8_a27b_5aee_3865_21fb048c97fb
  4a2bd495_e39e_9dfe_3594_fdfdcd7f6d7f["next()"]
  073edc28_8014_d911_5d42_44c6053f21e4 -->|calls| 4a2bd495_e39e_9dfe_3594_fdfdcd7f6d7f
  style 073edc28_8014_d911_5d42_44c6053f21e4 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

crates/oxide/src/extractor/named_variant_machine.rs lines 265–277

    fn parse_arbitrary_end(&mut self, cursor: &mut cursor::Cursor<'_>) -> MachineState {
        match cursor.next.into() {
            Class::Slash => {
                cursor.advance();
                self.transition::<ParsingModifierState>().next(cursor)
            }
            Class::Colon => {
                cursor.advance();
                self.transition::<ParsingEndState>().next(cursor)
            }
            _ => self.restart(),
        }
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does parse_arbitrary_end() do?
parse_arbitrary_end() is a function in the tailwindcss codebase.
What does parse_arbitrary_end() call?
parse_arbitrary_end() calls 2 function(s): advance, next.
What calls parse_arbitrary_end()?
parse_arbitrary_end() is called by 1 function(s): next.

Analyze Your Own Codebase

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

Try Supermodel Free