Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

forward-token-cursor.js 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /**
  2. * @fileoverview Define the cursor which iterates tokens only.
  3. * @author Toru Nagashima
  4. */
  5. "use strict";
  6. //------------------------------------------------------------------------------
  7. // Requirements
  8. //------------------------------------------------------------------------------
  9. const Cursor = require("./cursor");
  10. const utils = require("./utils");
  11. //------------------------------------------------------------------------------
  12. // Exports
  13. //------------------------------------------------------------------------------
  14. /**
  15. * The cursor which iterates tokens only.
  16. */
  17. module.exports = class ForwardTokenCursor extends Cursor {
  18. /**
  19. * Initializes this cursor.
  20. * @param {Token[]} tokens The array of tokens.
  21. * @param {Comment[]} comments The array of comments.
  22. * @param {Object} indexMap The map from locations to indices in `tokens`.
  23. * @param {number} startLoc The start location of the iteration range.
  24. * @param {number} endLoc The end location of the iteration range.
  25. */
  26. constructor(tokens, comments, indexMap, startLoc, endLoc) {
  27. super();
  28. this.tokens = tokens;
  29. this.index = utils.getFirstIndex(tokens, indexMap, startLoc);
  30. this.indexEnd = utils.getLastIndex(tokens, indexMap, endLoc);
  31. }
  32. /** @inheritdoc */
  33. moveNext() {
  34. if (this.index <= this.indexEnd) {
  35. this.current = this.tokens[this.index];
  36. this.index += 1;
  37. return true;
  38. }
  39. return false;
  40. }
  41. /*
  42. *
  43. * Shorthand for performance.
  44. *
  45. */
  46. /** @inheritdoc */
  47. getOneToken() {
  48. return (this.index <= this.indexEnd) ? this.tokens[this.index] : null;
  49. }
  50. /** @inheritdoc */
  51. getAllTokens() {
  52. return this.tokens.slice(this.index, this.indexEnd + 1);
  53. }
  54. };