@serenity-js/core
Version:
The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure
17 lines • 458 B
JavaScript
import { TinyType } from 'tiny-types';
import { Path } from './Path.js';
export class FileSystemLocation extends TinyType {
path;
line;
column;
static fromJSON(o) {
return new FileSystemLocation(Path.fromJSON(o.path), o.line, o.column);
}
constructor(path, line, column) {
super();
this.path = path;
this.line = line;
this.column = column;
}
}
//# sourceMappingURL=FileSystemLocation.js.map