next() — tailwindcss Function Reference
Architecture documentation for the next() function in arbitrary_property_machine.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 061a5eca_9872_79a5_37c5_ff53a24a94be["next()"] a0fb7bf4_10a9_c73e_1f40_d9fa8257af22["arbitrary_property_machine.rs"] 061a5eca_9872_79a5_37c5_ff53a24a94be -->|defined in| a0fb7bf4_10a9_c73e_1f40_d9fa8257af22 3c7a59e1_ee65_4083_ca70_5dc9aba642da["parse_property_variable()"] 3c7a59e1_ee65_4083_ca70_5dc9aba642da -->|calls| 061a5eca_9872_79a5_37c5_ff53a24a94be 1fccbc24_4a78_c2a2_ff5f_94473280b71a["parse_string()"] 1fccbc24_4a78_c2a2_ff5f_94473280b71a -->|calls| 061a5eca_9872_79a5_37c5_ff53a24a94be 3c7a59e1_ee65_4083_ca70_5dc9aba642da["parse_property_variable()"] 061a5eca_9872_79a5_37c5_ff53a24a94be -->|calls| 3c7a59e1_ee65_4083_ca70_5dc9aba642da 1fccbc24_4a78_c2a2_ff5f_94473280b71a["parse_string()"] 061a5eca_9872_79a5_37c5_ff53a24a94be -->|calls| 1fccbc24_4a78_c2a2_ff5f_94473280b71a style 061a5eca_9872_79a5_37c5_ff53a24a94be fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/oxide/src/extractor/arbitrary_property_machine.rs lines 76–88
fn next(&mut self, cursor: &mut cursor::Cursor<'_>) -> MachineState {
match cursor.curr.into() {
// Start of an arbitrary property
Class::OpenBracket => {
self.start_pos = cursor.pos;
cursor.advance();
self.transition::<ParsingPropertyState>().next(cursor)
}
// Anything else is not a valid start of an arbitrary value
_ => MachineState::Idle,
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does next() do?
next() is a function in the tailwindcss codebase, defined in crates/oxide/src/extractor/arbitrary_property_machine.rs.
Where is next() defined?
next() is defined in crates/oxide/src/extractor/arbitrary_property_machine.rs at line 76.
What does next() call?
next() calls 2 function(s): parse_property_variable, parse_string.
What calls next()?
next() is called by 2 function(s): parse_property_variable, parse_string.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free