parse_arbitrary_end() — tailwindcss Function Reference
Architecture documentation for the parse_arbitrary_end() function in named_variant_machine.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 43fc99cd_4f77_5595_d175_390a1f69b92e["parse_arbitrary_end()"] cb4ab49e_1e98_295d_47fb_b3820e774321["named_variant_machine.rs"] 43fc99cd_4f77_5595_d175_390a1f69b92e -->|defined in| cb4ab49e_1e98_295d_47fb_b3820e774321 b6af20bb_6a92_7fb4_5d5a_66e9aab4d73e["next()"] b6af20bb_6a92_7fb4_5d5a_66e9aab4d73e -->|calls| 43fc99cd_4f77_5595_d175_390a1f69b92e b6af20bb_6a92_7fb4_5d5a_66e9aab4d73e["next()"] 43fc99cd_4f77_5595_d175_390a1f69b92e -->|calls| b6af20bb_6a92_7fb4_5d5a_66e9aab4d73e style 43fc99cd_4f77_5595_d175_390a1f69b92e 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
Calls
Called By
Source
Frequently Asked Questions
What does parse_arbitrary_end() do?
parse_arbitrary_end() is a function in the tailwindcss codebase, defined in crates/oxide/src/extractor/named_variant_machine.rs.
Where is parse_arbitrary_end() defined?
parse_arbitrary_end() is defined in crates/oxide/src/extractor/named_variant_machine.rs at line 265.
What does parse_arbitrary_end() call?
parse_arbitrary_end() calls 1 function(s): 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