Sha256: 8498e884f4c360384c3a22c2a4686ac7c712dcf7fe0e31ca82a257514d9922a2

Contents?: true

Size: 1013 Bytes

Versions: 44

Compression:

Stored size: 1013 Bytes

Contents

/**
 * @fileoverview Define the abstract class about cursors which manipulate another cursor.
 * @author Toru Nagashima
 */
"use strict";

//------------------------------------------------------------------------------
// Requirements
//------------------------------------------------------------------------------

const Cursor = require("./cursor");

//------------------------------------------------------------------------------
// Exports
//------------------------------------------------------------------------------

/**
 * The abstract class about cursors which manipulate another cursor.
 */
module.exports = class DecorativeCursor extends Cursor {

    /**
     * Initializes this cursor.
     * @param {Cursor} cursor - The cursor to be decorated.
     */
    constructor(cursor) {
        super();
        this.cursor = cursor;
    }

    /** @inheritdoc */
    moveNext() {
        const retv = this.cursor.moveNext();

        this.current = this.cursor.current;

        return retv;
    }
};

Version data entries

44 entries across 44 versions & 2 rubygems

Version Path
govuk_publishing_components-16.19.0 node_modules/standard/node_modules/eslint/lib/token-store/decorative-cursor.js
govuk_publishing_components-16.18.0 node_modules/standard/node_modules/eslint/lib/token-store/decorative-cursor.js
govuk_publishing_components-16.17.0 node_modules/standard/node_modules/eslint/lib/token-store/decorative-cursor.js
lanes-0.8.0 node_modules/eslint/lib/token-store/decorative-cursor.js