forgot to update this a while back

This commit is contained in:
CPunch 2023-05-28 21:16:30 -05:00 committed by cpunch
parent dfcf0c92b5
commit 2d0e63f706
1 changed files with 2 additions and 2 deletions

View File

@ -1,13 +1,13 @@
let object = {
__setter = [
"field1" = function(self, val)
"field1" = func(self, val)
print("setter for field1 called!")
self.x = val
end
],
__getter = [
"field1" = function(self)
"field1" = func(self)
print("getter for field1 called!")
return self.x + 1