123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354(* Js_of_ocaml compiler
* http://www.ocsigen.org/js_of_ocaml/
* Copyright (C) 2013 Hugo Heuzard
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, with linking exception;
* either version 2.1 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*)open!Stdlibtypet={src:stringoption;name:stringoption;col:int;line:int;idx:int}letzero={src=None;name=None;col=0;line=0;idx=0}lett_of_lexbuflexbuf:t=letidx=lexbuf.Lexing.lex_start_p.Lexing.pos_cnuminletline,col=(lexbuf.Lexing.lex_start_p.pos_lnum,lexbuf.Lexing.lex_start_p.pos_cnum-lexbuf.Lexing.lex_start_p.pos_bol)inletname=Somelexbuf.Lexing.lex_start_p.pos_fnameinletsrc=Somelexbuf.Lexing.lex_start_p.pos_fnamein{idx;line;col;name;src}letstart_position(t:t)={Lexing.pos_fname=Option.value~default:""t.name;pos_lnum=t.line;pos_bol=t.idx-t.col;pos_cnum=t.idx}lett_of_position~srcpos={name=Somepos.Lexing.pos_fname;src;line=pos.Lexing.pos_lnum;col=pos.Lexing.pos_cnum-pos.Lexing.pos_bol;idx=0}