mfichman / jogo

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

'self' does not refer to enclosing object when inside a closure #74

Closed mfichman closed 11 years ago

mfichman commented 11 years ago

Example:

Foo < Object {

    test() {
        f = func() {
            self.test() # Fails, b/c 'self' refers to the closure
        }
    }
}
mfichman commented 11 years ago

Duplicate of #75