UNPKG

gauge-ts

Version:
19 lines (18 loc) 362 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Position = void 0; class Position { _line; _char; constructor(line, char) { this._line = line; this._char = char; } getLine() { return this._line; } getChar() { return this._char; } } exports.Position = Position;