3.H55.5.0+dev0-2025-04-28/&Lexing(positionA;@@)pos_fname@@&stringE@@@7../../stdlib/lexing.mliUU@@&LexingA@(pos_lnum@@#intF@@@VV@@B@'pos_bol@@G@@@WW@@C@(pos_cnum@@H@@@*X+X@@)D@@@A@@@@@.T/Y  @@@@-@@A@)dummy_pos&LexingI(position@@@@?h@h@@>E@@&lexbufB;@@+refill_buff@@@&LexingJ&lexbuf@@@$unitK@@@@@]r[_^r[|@@\G@*lex_bufferA@%bytesL@@@ks}ls}@@jH@.lex_buffer_lenA@iM@@@xtyt@@wI@+lex_abs_posA@vN@@@İuu@@J@-lex_start_posA@O@@@ǰvv@@K@,lex_curr_posA@P@@@ʰw w @@L@,lex_last_posA@Q@@@Ͱx  #x  >@@M@/lex_last_action A@R@@@аy ? Cy ? a@@N@/lex_eof_reached!A@$boolS@@@Ӱz b fz b @@O@'lex_mem"A@%arrayUT@@@@@@ذ{  {  @@P@+lex_start_p#A@&LexingV(position@@@۰|  |  @@Q@*lex_curr_p$A@&LexingW(position@@@ް}  }  @@R@@@A@@@@@qMM~  @@@@F@A@,from_channel%.with_positions&optionLQX@@@@@@@&StdlibY*in_channel@@@&LexingZ&lexbuf@@@@@@@ @*\aa+\a@@)S@@+from_string&.with_positions+y[@@@ @@@@H\@@@ &Lexing]&lexbuf@@@ @@ @@@OaccPac@@NT@@-from_function'.with_positionsP^@@@@@@@@_@@@@f`@@@ka@@@@@@@&Lexingb&lexbuf@@@@@@@@gmmgm@@U@@,set_position(@&Lexingc&lexbuf@@@@&Lexingd(position@@@He@@@@@@@@o++o+X@@V@@,set_filename)@&Lexingf&lexbuf@@@@g@@@ gh@@@!@@"@@#@tt&@@W@@.with_positions*@&Lexingi&lexbuf@@@$j@@@%@@&@yy@@X@@&lexeme+@&Lexingk&lexbuf@@@'l@@@(@@)@___|@@Y@@+lexeme_char,@&Lexingm&lexbuf@@@*@n@@@+$charo@@@,@@-@@.@@@Z@@,lexeme_start-@&Lexingp&lexbuf@@@/q@@@0@@1@+bb,b@@*[@@*lexeme_end.@&Lexingr&lexbuf@@@24s@@@3@@4@C33D3Q@@B\@@.lexeme_start_p/@&Lexingt&lexbuf@@@5&Lexingu(position@@@6@@7@^_>@@]]@@,lexeme_end_p0@&Lexingv&lexbuf@@@8&Lexingw(position@@@9@@:@yz@@x^@@(new_line1@&Lexingx&lexbuf@@@;5y@@@<@@=@@@_@@+flush_input2@&Lexingz&lexbuf@@@>M{@@@?@@@@%@@`@@*sub_lexeme3@&Lexing|&lexbuf@@@A@}@@@B@~@@@C@@@D@@E@@F@@G@ D D D s@@a@@.sub_lexeme_opt4@&Lexing&lexbuf@@@H@@@@I@@@@J@@@K@@@M@@N@@O@@P@ t t t @@b@@/sub_lexeme_char5@&Lexing&lexbuf@@@Q@@@@R@@@S@@T@@U@    @@c@@3sub_lexeme_char_opt6@&Lexing&lexbuf@@@V@$@@@W'*@@@X@@@Z@@[@@\@=  > !@@@@@@@o!!!!@@l@0lex_default_code?@@@@@r!!!!@@m@.lex_trans_code@@@@@@u!!!"@@n@.lex_check_codeA@@@@@x""""3@@o@(lex_codeB@@@@@{"4"8"4"I@@p@@@A@@@@@!!"4"J@@@@e@A@&engineC@&Lexing*lex_tables@@@@@@@@&Lexing&lexbuf@@@@@@@@@@@@@"L"L"L"{@@q@@*new_engineD@&Lexing*lex_tables@@@@ @@@@&Lexing&lexbuf@@@@@@@@@@@@@("|"|)"|"@@'r@@@3 -The run-time library for lexers generated by (ocamllex!.@@@@@@@@@@@@A7../../stdlib/lexing.mliA@)Positions@@#/Lexing.position30A value of type (position ( describes a point in a source file. )pos_fname3 is the file name; (pos_lnum8 is the line number; 'pos_bol is the offset of the beginning of the line (number of characters between the beginning of the lexbuf and the beginning of the line); (pos_cnum is the offset of the position (number of characters between the beginning of the lexbuf and the position). The difference between (pos_cnum% and 'pos_bol t is the character offset within the line (i.e. the column number, assuming each character is one column wide).@ " See the documentation of type &lexbuf F for information about how the lexing engine will manage positions.@@@@@@@@@@@@@@@@{@@z@o@@n@d@@c@@A@@\[@@0Lexing.dummy_pos30A value of type (position 8, guaranteed to be different from any valid position.@@@@@@@@@@@@d@@@@^A@-Lexer buffers@@#-Lexing.lexbuf3 The type of lexer buffers. A lexer buffer is the argument passed to the scanning functions defined by the generated scanners. The lexer buffer holds the current state of the scanner, plus a function to refill the buffer from the input.@ ' Lexers can optionally maintain the *lex_curr_p% and +lex_start_p e position fields. This "position tracking" mode is the default, and it corresponds to passing 3~with_position:true to functions that create lexer buffers. In this mode, the lexing engine and lexer actions are co-responsible for properly updating the position fields, as described in the next paragraph. When the mode is explicitly disabled (with 4~with_position:false ), the lexing engine will not touch the position fields and the lexer actions should be careful not to do it either; the *lex_curr_p( and +lex_start_p ! field will then always hold the )dummy_pos invalid position. Not tracking positions avoids allocations and memory writes and can significantly improve the performance of the lexer in contexts where +lex_start_p% and *lex_curr_p0 are not needed.@ \ Position tracking mode works as follows. At each token, the lexing engine will copy *lex_curr_p$ to +lex_start_p5, then change the (pos_cnum* field of *lex_curr_p M by updating it with the number of characters read since the start of the &lexbuf . The other fields are left unchanged by the lexing engine. In order to keep them accurate, they must be initialised before the first use of the lexbuf, and updated by the relevant lexer actions (i.e. at each end of line -- see also (new_line").@@@@@@@@@@@@@@@@A@@A@@A@@A@@A@@yA@x@nA@m@cA@b@WA@V@EA@D@7A@6@@A@@,+@@3Lexing.from_channel3 5Create a lexer buffer on the given input channel. :Lexing.from_channel inchan > returns a lexer buffer which reads from the input channel &inchan ", at the current reading position.@@@@@@@@@@@@:@:9@ /@@@@!2Lexing.from_string3 Create a lexer buffer which reads from the given string. Reading starts from the first character in the string. An end-of-input condition is generated when the end of the string is reached.@@@@@@@@@@@@"@"!@@@@@4Lexing.from_function3 Create a lexer buffer with the given function as its reading method. When the scanner needs more characters, it will call the given function, giving it a byte sequence !s5 and a byte count !n:. The function should put !n3 bytes or fewer in !s m, starting at index 0, and return the number of bytes provided. A return value of 0 means end of input.@@@@@@@@@@@@'@'&@=@@@@3Lexing.set_position3 +Set the initial tracked input position for &lexbuf? to a custom value. Ignores )pos_fname&. See 3Lexing.set_filenameD@9 for changing this field.@@@@$4.11@@@@@@@@a@d@@@@ 3 0Set filename in the initial tracked position to $file' in &lexbuf!.@@@@$4.11@@@@@@@@@@@@@ 5Lexing.with_positions3 ATell whether the lexer buffer keeps track of position fields *lex_curr_p# / +lex_start_p , as determined by the corresponding optional argument for functions that create lexer buffers (whose default value is $true").@* When .with_positions$ is %false f, lexer actions should not modify position fields. Doing it nevertheless could re-enable the -with_position? mode and degrade performances.@@@@@@@@@@@@3@4@@@@)A@ $Functions for lexer semantic actions@@ [The following functions can be called from the semantic actions of lexer definitions (the ML code enclosed in braces that computes the value returned by lexing functions). They give access to the character string matched by the regular expression associated with the semantic action. These functions must be applied to the argument &lexbuf %, which, in the code generated by (ocamllex A, is bound to the lexer buffer passed to the parsing function.@-Lexing.lexeme34Lexing.lexeme lexbuf A returns the string matched by the regular expression.@@@@@@@@@@@@E@F@@@@;2Lexing.lexeme_char3;Lexing.lexeme_char lexbuf i: returns character number !i: in the matched string.@@@@@@@@@@@@E@F@?@@@@63Lexing.lexeme_start3:Lexing.lexeme_start lexbuf returns the offset in the input stream of the first character of the matched string. The first character of the stream has offset 0.@@@@@@@@@@@@:@;@@@@01Lexing.lexeme_end38Lexing.lexeme_end lexbuf returns the offset in the input stream of the character following the last character of the matched string. The first character of the stream has offset 0.@@@@@@@@@@@@4@#5@@@@*5Lexing.lexeme_start_p3%Like ,lexeme_start8, but return a complete (position Y instead of an offset. When position tracking is disabled, the function returns )dummy_pos!.@@@@@@@@@@@@=@D>@@@@03Lexing.lexeme_end_p3%Like *lexeme_end8, but return a complete (position Y instead of an offset. When position tracking is disabled, the function returns )dummy_pos!.@@@@@@@@@@@@C@eD@@@@6/Lexing.new_line3+Update the *lex_curr_p field of the lexbuf to reflect the start of a new line. You can call this function in the semantic action of the rule that matches the end-of-line character. The function does nothing when position tracking is disabled.@@@@$3.11@@@@@@@?@|@@@@@5A@7Miscellaneous functions@@2Lexing.flush_input3 Discard the contents of the buffer and reset the current position to 0. The next use of the lexbuf will trigger a refill.@@@@@@@@@@@@=@>@@@@3@@@@A@@@@@