gauge-ts
Version:
Typescript runner for Gauge
19 lines (18 loc) • 362 B
JavaScript
;
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;