PageRenderTime 32ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/pyjs/tests/test043.js

http://pyjamas.googlecode.com/
JavaScript | 23 lines | 14 code | 9 blank | 0 comment | 3 complexity | 8df2a6a159236237339c7f262716bf64 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0
  1. function test() {
  2. var __temp_i = pairs.__iter__();
  3. try {
  4. while (true) {
  5. var temp_i = __temp_i.next();
  6. var i = temp_i.__getitem__(0);
  7. var j = temp_i.__getitem__(1);
  8. }
  9. } catch (e) {
  10. if (e != StopIteration) {
  11. throw e;
  12. }
  13. }
  14. }