/pyjs/tests/test027.js
JavaScript | 15 lines | 15 code | 0 blank | 0 comment | 1 complexity | beffdf73ac1896aea29eb3c8c60a3c05 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0
- __RowDataAcceptorImpl.prototype.__class__ = "RowDataAcceptorImpl";
- function RowDataAcceptorImpl() {
- return new __RowDataAcceptorImpl();
- }
- function __RowDataAcceptorImpl() {
- }
- __RowDataAcceptorImpl.prototype.accept = function(startRow, data) {
- var srcRowIndex = 0;
- var srcRowCount = 5;
- var destRowIndex = 1;
- while ((srcRowIndex < srcRowCount)) {
- srcRowIndex += 1;
- destRowIndex += 1;
- }
- };