Andrew Gazelka
04/16/2019, 7:05 PMfoo()
of class Bar
Bar#foo()
. Is it appropriate to reference property baz
of Bar
as Bar#baz
?Ruckus
04/16/2019, 7:12 PMBar.foo()
.Andrew Gazelka
04/16/2019, 7:48 PMBar
is an objectRuckus
04/16/2019, 7:52 PMfoo()
. Is it a function call, or shorthand for foo.invoke()
? There's no way to know out of context.