⚠️ Oops! This page doesn't appear to define a type called _.
Edit

Location_

This module does not have a toplevel documentation block.

type point = {line: int, column: int}

type span = {file: string, start: point, end_: point}

type with_location('a) = {location: span, value: 'a}

let at: (span, 'a) => with_location('a)

let value: with_location('a) => 'a

let map: ('a => 'b, with_location('a)) => with_location('b)

let same: (with_location('a), 'b) => with_location('b)

let span: list(span) => span