class banana
protected tree as long
method get_banana as long
/\
end class
methods of banana
method get_banana as long
method = tree
end method
end methods
class banana
protected tree as long
method get_banana as long
method = tree
end method
end class
There is a useful diagnostic for checking the internals of classes and other entities:
#recordof of banana
This command will display the class record during compile-time.
You can also use recordof banana which returns the record as a string at runtime.
#recordof of banana
#recordof banana
---------------------------
202
---------------------------
#recordof app
ú1301ù
28ù
4780ù
1ù
0ù
1813ù
appù
[ebx+4780]ù
ù
oapp ù
ú
---------------------------
OK
---------------------------
ú-3ù
16ù
1ù
0ù
4ù
0ù
bananaù
counta 0 2 9 A , long
countb 4 2 9 A , long
get 8 9 9 A #long@a0 long
put 12 9 9 A #long@a0 sys
/\
tree 0 1 1 A , string
plantation 4 1 1 A , string
country 8 1 1 A , string
stored 12 1 9 A , long
ù
ù
push ecx : lea ecx,[ebx+4096]
o2 e8 00 00 00 00 58 05 gl get#long 83 c0 06
mov [ecx+8],eax ; METHOD PTR
o2 e8 00 00 00 00 58 05 gl put#long 83 c0 06
mov [ecx+12],eax ; METHOD PTR
pop ecx
ù
ú