Open yav opened 3 months ago
FieldAccess in the function position of a call should be parentesized, so that we get (f.x)(y) (call the closure stored in field x) instead of f.x(y) (call method x on f)
FieldAccess
(f.x)(y)
x
f.x(y)
f
FieldAccess
in the function position of a call should be parentesized, so that we get(f.x)(y)
(call the closure stored in fieldx
) instead off.x(y)
(call methodx
onf
)