function foo () { return 'global'; }

class bar {
   function foo () { return 'local'; }

   function zot () {
     // How can I call the global foo from here?
     without (this) { foo(); }
   }
}


_______________________________________________
Es4-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es4-discuss

Reply via email to