mirror of
https://github.com/wishthis/wishthis.git
synced 2025-12-29 02:08:27 -05:00
22 lines
389 B
TypeScript
22 lines
389 B
TypeScript
/**
|
|
* Store position information for a node
|
|
*/
|
|
export default class Position {
|
|
start: {
|
|
line: number;
|
|
column: number;
|
|
};
|
|
end: {
|
|
line: number;
|
|
column: number;
|
|
};
|
|
source?: string;
|
|
constructor(start: {
|
|
line: number;
|
|
column: number;
|
|
}, end: {
|
|
line: number;
|
|
column: number;
|
|
}, source: string);
|
|
}
|