fn find_delimiters( cx: &LateContext<'_>, span: Span, ) -> Option<(Span, Span, char)>
Given the span of some_macro!(args);, gives the span of ( and ), and the type of (opening) delimiter used.
some_macro!(args);
(
)