fn split_call(expr: &str) -> Option<(&str, &str)>
Split <head>(<args>) into (head, args). Returns None if the expression isn’t a bare call (e.g. has a trailing .foo).
<head>(<args>)
None
.foo