/function foo () { return 'global'; }

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

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



You could use window["foo"](); or whatever the global object is named in the environment
_______________________________________________
Es4-discuss mailing list
Es4-discuss@mozilla.org
https://mail.mozilla.org/listinfo/es4-discuss

Reply via email to