repo.or.cz
/
vox.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
removed slot operator (no longer needed) & class proto bug fix to use NewSlot by...
[vox.git]
/
_modules
/
core
/
strict.vx
blob
2f37933e48e3382a7e7109c6f2caa91713d134b5
1
2
3
println("this = ", this)
4
5
/*
6
this.setdelegate(
7
{
8
constructor()
9
{
10
println("constructor")
11
}
12
13
__get__ = function(key)
14
{
15
println("__get__()")
16
}
17
18
__set__ = function(key, value)
19
{
20
println("__set__()")
21
}
22
})
23
*/