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