PageRenderTime 430ms CodeModel.GetById 418ms RepoModel.GetById 0ms app.codeStats 0ms

/pyjs/tests/test036.js

http://pyjamas.googlecode.com/
JavaScript | 8 lines | 8 code | 0 blank | 0 comment | 0 complexity | 5e2c0bfe8eb7f921cf8ec54a22626911 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0
  1. pyjs_extend(__Bar, __foo_Foo);
  2. __Bar.prototype.__class__ = "Bar";
  3. function Bar() {
  4. return new __Bar();
  5. }
  6. function __Bar() {
  7. __foo_Foo.call(this);
  8. }