mirror of
https://github.com/wishthis/wishthis.git
synced 2025-12-26 08:48:18 -05:00
14 lines
241 B
JavaScript
14 lines
241 B
JavaScript
/**
|
|
* Store position information for a node
|
|
*/
|
|
export default class Position {
|
|
start;
|
|
end;
|
|
source;
|
|
constructor(start, end, source) {
|
|
this.start = start;
|
|
this.end = end;
|
|
this.source = source;
|
|
}
|
|
}
|