pxt-microbit 7.1.2 → 7.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/built/sim.js CHANGED
@@ -2401,6 +2401,14 @@ var pxsim;
2401
2401
  mirrorToSerial = !!enabled;
2402
2402
  }
2403
2403
  flashlog.setSerialMirroring = setSerialMirroring;
2404
+ function getNumberOfRows(fromRowIndex = 0) {
2405
+ return 0; // TODO
2406
+ }
2407
+ flashlog.getNumberOfRows = getNumberOfRows;
2408
+ function getRows(fromRowIndex, nRows) {
2409
+ return ""; // TODO
2410
+ }
2411
+ flashlog.getRows = getRows;
2404
2412
  })(flashlog = pxsim.flashlog || (pxsim.flashlog = {}));
2405
2413
  })(pxsim || (pxsim = {}));
2406
2414
  var pxsim;