We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
self
Ok: { local mything = self, x: 1, y: mything.x, wrapped: { z: mything.x } } Not ok: { local mything = self, x: 1, y: self.x, wrapped: { z: mything.x } } Ok: local obj = { a: obj.sth, b:obj.sth } Not ok: local obj = { a: obj.sth, b:self.sth }
{ local mything = self, x: 1, y: mything.x, wrapped: { z: mything.x } }
{ local mything = self, x: 1, y: self.x, wrapped: { z: mything.x } }
local obj = { a: obj.sth, b:obj.sth }
local obj = { a: obj.sth, b:self.sth }