Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/csskit/csskit
/ accept_mut
Method
accept_mut
crates/css_ast/src/visit/mod.rs:167–171 ·
view source on GitHub ↗
(&mut self, v: &mut V)
Source
from the content-addressed store, hash-verified
165
T: VisitableMut,
166
{
167
fn accept_mut<V: VisitMut>(&mut self, v: &mut V) {
168
if let Some(node) = self {
169
node.accept_mut(v)
170
}
171
}
172
}
173
174
macro_rules! impl_optionals {
Callers
2
test_unbalanced_visitor_panics
Function · 0.80
test_balanced_visitor_succeeds
Function · 0.80
Calls
1
exit_declaration
Method · 0.80
Tested by
2
test_unbalanced_visitor_panics
Function · 0.64
test_balanced_visitor_succeeds
Function · 0.64