removed slot operator (no longer needed) & class proto bug fix to use NewSlot by...
[vox.git] / _modules / core / strict.vx
blob2f37933e48e3382a7e7109c6f2caa91713d134b5
3 println("this = ", this)
5 /*
6 this.setdelegate(
8     constructor()
9     {
10         println("constructor")
11     }
13     __get__ = function(key)
14     {
15         println("__get__()")
16     }
18     __set__ = function(key, value)
19     {
20         println("__set__()")
21     }