UNPKG

@serenity-js/core

Version:

The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure

21 lines 639 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.FileSystemLocation = void 0; const tiny_types_1 = require("tiny-types"); const Path_1 = require("./Path"); class FileSystemLocation extends tiny_types_1.TinyType { path; line; column; static fromJSON(o) { return new FileSystemLocation(Path_1.Path.fromJSON(o.path), o.line, o.column); } constructor(path, line, column) { super(); this.path = path; this.line = line; this.column = column; } } exports.FileSystemLocation = FileSystemLocation; //# sourceMappingURL=FileSystemLocation.js.map