package stdcompat

  1. Overview
  2. Docs
type position = Lexing.position = {
  1. pos_fname : string;
  2. pos_lnum : int;
  3. pos_bol : int;
  4. pos_cnum : int;
}

Alias for Lexing.position

type lexbuf = Lexing.lexbuf = {
  1. refill_buff : lexbuf -> unit;
  2. mutable lex_buffer : bytes;
  3. mutable lex_buffer_len : int;
  4. mutable lex_abs_pos : int;
  5. mutable lex_start_pos : int;
  6. mutable lex_curr_pos : int;
  7. mutable lex_last_pos : int;
  8. mutable lex_last_action : int;
  9. mutable lex_eof_reached : bool;
  10. mutable lex_mem : int array;
  11. mutable lex_start_p : position;
  12. mutable lex_curr_p : position;
}
  • since 4.02.0:

type lexbuf = refill_buff: lexbuf -> unit ; mutable lex_buffer: bytes ; mutable lex_buffer_len: int ; mutable lex_abs_pos: int ; mutable lex_start_pos: int ; mutable lex_curr_pos: int ; mutable lex_last_pos: int ; mutable lex_last_action: int ; mutable lex_eof_reached: bool ; mutable lex_mem: int array ; mutable lex_start_p: position ; mutable lex_curr_p: position

  • since 3.07.0:

type lexbuf = refill_buff: lexbuf -> unit ; mutable lex_buffer: string ; mutable lex_buffer_len: int ; mutable lex_abs_pos: int ; mutable lex_start_pos: int ; mutable lex_curr_pos: int ; mutable lex_last_pos: int ; mutable lex_last_action: int ; mutable lex_eof_reached: bool ; mutable lex_mem: int array ; mutable lex_start_p: position ; mutable lex_curr_p: position

type lex_tables = Stdlib.Lexing.lex_tables = {
  1. lex_base : string;
  2. lex_backtrk : string;
  3. lex_default : string;
  4. lex_trans : string;
  5. lex_check : string;
  6. lex_base_code : string;
  7. lex_backtrk_code : string;
  8. lex_default_code : string;
  9. lex_trans_code : string;
  10. lex_check_code : string;
  11. lex_code : string;
}
val set_position : lexbuf -> position -> unit
  • since 4.11.0: val set_position : lexbuf -> position -> unit
val set_filename : lexbuf -> string -> unit
  • since 4.11.0: val set_filename : lexbuf -> string -> unit
val from_channel : ?with_positions:bool -> in_channel -> lexbuf
  • since 4.08.0:

val from_channel : ?with_positions:bool -> in_channel -> lexbuf

val from_string : ?with_positions:bool -> string -> lexbuf
  • since 4.08.0: val from_string : ?with_positions:bool -> string -> lexbuf
val from_function : ?with_positions:bool -> (bytes -> int -> int) -> lexbuf
  • since 4.08.0:

val from_function : ?with_positions:bool -> (bytes -> int -> int) -> lexbuf

val with_positions : lexbuf -> bool
  • since 4.08.0: val with_positions : lexbuf -> bool
val new_line : lexbuf -> unit
  • since 3.11.0: val new_line : lexbuf -> unit
val dummy_pos : position
val lexeme : lexbuf -> string

Alias for Lexing.lexeme

val lexeme_char : lexbuf -> int -> char
val lexeme_start : lexbuf -> int
val lexeme_end : lexbuf -> int
val lexeme_start_p : lexbuf -> position
val lexeme_end_p : lexbuf -> position
val flush_input : lexbuf -> unit
val sub_lexeme : lexbuf -> int -> int -> string
val sub_lexeme_opt : lexbuf -> int -> int -> string option
val sub_lexeme_char : lexbuf -> int -> char
val sub_lexeme_char_opt : lexbuf -> int -> char option
val engine : lex_tables -> int -> lexbuf -> int

Alias for Lexing.engine

val new_engine : lex_tables -> int -> lexbuf -> int