package accessor_base

  1. Overview
  2. Docs

Source file accessor_source_code_position.ml

1
2
3
4
5
6
7
8
9
10
open! Base
open! Import

type t = Source_code_position.t =
  { pos_fname : string
  ; pos_lnum : int
  ; pos_bol : int
  ; pos_cnum : int
  }
[@@deriving accessors]