2019-04-15 22:40:02 -07:00
|
|
|
/// Source position
|
|
|
|
#[derive(Copy, Clone, PartialEq, Debug)]
|
2019-09-21 15:35:03 -07:00
|
|
|
pub(crate) struct Position {
|
|
|
|
pub(crate) offset: usize,
|
|
|
|
pub(crate) column: usize,
|
2020-02-10 20:07:06 -08:00
|
|
|
pub(crate) line: usize,
|
2019-04-15 22:40:02 -07:00
|
|
|
}
|