break
dim supers() as string
dim tmp as ObjectClass = o.superclass
while not ( tmp is nil )
supers.append( tmp.name )
tmp = tmp.superclass
wend
system.debugLog( join( supers, " <- " ) )
for each m as ObjectMethod in o.methods
system.debugLog( m.name )
next
for each e as ObjectMethod in o.events
dim implemented as string = "False"
if e.functionPtr > 0 then _
implemented = "True"
system.debugLog( e.name + " -> " + implemented )
next
for each p as ObjectProperty in o.properties
system.debugLog( p.name + " -> " + p.value )
next
Cloning of objects almost works, but some bugs I have to sort out...
-- SirG3