fn classify_call(tokens: &[TokenTree]) -> Option<LowerCall>Expand description
Classify a flat token slice as a lowerable top-level call.
Returns None for anything that’s not a lowerable call.
Supported patterns:
ident(args…)— simple call, 2 tokensident.ident.…(args…)— R dot-name call (e.g.is.null), multiple tokens + grouppkg::fn(args…)— namespaced call, 5 tokens