///|
pub(all) struct Position {
  file : String
  line : Int
  column : Int
} derive(Show, Eq, ToJson)

///|
pub(all) struct Span {
  start : Position
  end : Position
} derive(Show, Eq, ToJson)