mfichman / jogo

High(er) performance compiled programming language with clean, powerful syntax
MIT License
6 stars 1 forks source link

Fix up membership operator + function call operator #39

Closed mfichman closed 13 years ago

mfichman commented 13 years ago

There are some problems here, not all cases are covered:

obj.func() # Normal dispatch
obj.func # Value of expression is a function value
obj.value # This is a call to an accessor, e.g., value?()

func() # Dispatch on local var
func() # Call free func
func() # Dispatch on self
mfichman commented 13 years ago

Finished