|
From: strk <st...@ke...> - 2007-12-20 01:24:25
|
ActionScript:
obj[a+'memb']();
flasm:
push 0, 'obj'
getVariable
push 'a'
getVariable
push 'memb'
add
callMethod
decompiles to:
obj.a+'memb'();
.. which is a syntax error ...
--strk;
() ASCII Ribbon Campaign
/\ Keep it simple!
|