/pyjs/tests/test023.js
JavaScript | 23 lines | 18 code | 5 blank | 0 comment | 3 complexity | 8273218f39fa5e953f0ae1d435517bac MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0
1__CalendarProvider.prototype.__class__ = "CalendarProvider"; 2function CalendarProvider() { 3 return new __CalendarProvider(); 4} 5function __CalendarProvider() { 6} 7__CalendarProvider.prototype.pushResults = function(acceptor, startRow, people) { 8 9 var __person = people.__iter__(); 10 try { 11 while (true) { 12 var person = __person.next(); 13 14 15 16 } 17 } catch (e) { 18 if (e != StopIteration) { 19 throw e; 20 } 21 } 22 23};