mirror of
https://github.com/CPunch/Cosmo.git
synced 2024-11-05 08:10:05 +00:00
forgot to update this a while back
This commit is contained in:
parent
dfcf0c92b5
commit
2d0e63f706
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user