foo . bar
它可能是 foo.bar() 也可能是 foo(withObj.bar).
foo.bar()
foo(withObj.bar)
f (a) , b
它可能是 call f(a)._DEFAULT(a)(Missing, b) 也可能是 f(a, b).
call f(a)._DEFAULT(a)(Missing, b)
f(a, b)