Hi,

Can you please tell me if gnash support 'global', 'root' keywords ?
For example this action script:

_global.factorial = function (n) {
 if (n <= 1) {
   return 1;
 } else {
   return n * factorial(n-1);
 }
}

If yes, can you please point me to the code which handles it?
I looked at server/asobj/Global.cpp, I don't find it there.

Thank you.


_______________________________________________
Gnash mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/gnash

Reply via email to