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 aae0781e_2b11_9d91_0f21_3ba0e37f5c20["next()"] 67459930_8537_2caf_b2cb_b2270e50566c["arbitrary_property_machine.rs"] aae0781e_2b11_9d91_0f21_3ba0e37f5c20 -->|defined in| 67459930_8537_2caf_b2cb_b2270e50566c 97eae319_ea05_01d2_6e88_d5789d947a7e["parse_property_variable()"] 97eae319_ea05_01d2_6e88_d5789d947a7e -->|calls| aae0781e_2b11_9d91_0f21_3ba0e37f5c20 f9490091_a179_8e96_9f63_54d532233df1["parse_string()"] f9490091_a179_8e96_9f63_54d532233df1 -->|calls| aae0781e_2b11_9d91_0f21_3ba0e37f5c20 97eae319_ea05_01d2_6e88_d5789d947a7e["parse_property_variable()"] aae0781e_2b11_9d91_0f21_3ba0e37f5c20 -->|calls| 97eae319_ea05_01d2_6e88_d5789d947a7e f9490091_a179_8e96_9f63_54d532233df1["parse_string()"] aae0781e_2b11_9d91_0f21_3ba0e37f5c20 -->|calls| f9490091_a179_8e96_9f63_54d532233df1 style aae0781e_2b11_9d91_0f21_3ba0e37f5c20 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