Source file parser_automaton_internal.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
open Import
open Ppx_sexp_conv_lib
module Public = struct
type stack =
| Empty
| Open of stack
| Sexp of Sexp.t * stack
let empty_stack = Empty
type stack_cst =
| Empty
| T_or_comment of Cst.t_or_comment * stack_cst
| Open of Positions.pos * stack_cst
| In_sexp_comment of { hash_semi_pos : Positions.pos
; rev_comments : Cst.comment list
; stack : stack_cst
}
let empty_stack_cst = Empty
type state_cst =
{ token_buffer : Buffer.t
;
mutable token_start_pos : Positions.pos
}
type ('u, 's) kind =
| Positions : (Positions.Builder.t, unit) kind
| Sexp : (unit, stack) kind
| Sexp_with_positions : (Positions.Builder.t, stack) kind
| Cst : (state_cst, stack_cst) kind
type ('u, 's) state =
{ mutable automaton_state : int
; kind : ('u, 's) kind
; mutable depth : int
;
mutable block_comment_depth : int
;
mutable ignoring_stack : int list
;
mutable escaped_value : int
;
atom_buffer : Buffer.t
; user_state : 'u
; mode : ('u, 's) mode
; mutable full_sexps : int
; mutable offset : int
; mutable line_number : int
; mutable bol_offset : int
}
and ('u, 's) mode =
| Single
| Many
| Eager of
{ got_sexp : ('u, 's) state -> 's -> 's
; mutable no_sexp_is_error : bool
}
let initial_user_state : type u s. (u, s) kind -> Positions.pos -> u =
fun kind initial_pos ->
match kind with
| Positions -> Positions.Builder.create ~initial_pos ()
| Sexp -> ()
| Sexp_with_positions -> Positions.Builder.create ~initial_pos ()
| Cst ->
{ token_buffer = Buffer.create 128
; token_start_pos = Positions.beginning_of_file
}
let initial_state = 0
let error_state = 1
let new_state ?(initial_pos=Positions.beginning_of_file) mode kind =
{ kind = kind
; depth = 0
; automaton_state = initial_state
; block_comment_depth = 0
; ignoring_stack = []
; escaped_value = 0
; atom_buffer = Buffer.create 128
; user_state = initial_user_state kind initial_pos
; mode = mode
; full_sexps = 0
; offset = initial_pos.offset
; line_number = initial_pos.line
; bol_offset = initial_pos.offset - initial_pos.col
}
let mode t = t.mode
let positions t = Positions.Builder.contents t.user_state
let atom_buffer t = t.atom_buffer
let offset state = state.offset
let line state = state.line_number
let column state = state.offset - state.bol_offset
let position t =
{ Positions.
col = column t
; line = line t
; offset = offset t
}
let reset_user_state : type u s. (u, s) state -> unit = fun t ->
match t.kind with
| Positions -> Positions.Builder.reset t.user_state (position t)
| Sexp -> ()
| Sexp_with_positions -> Positions.Builder.reset t.user_state (position t)
| Cst -> Buffer.clear t.user_state.token_buffer
let reset ?(pos=Positions.beginning_of_file) t =
t.depth <- 0;
t.automaton_state <- initial_state;
t.block_comment_depth <- 0;
t.ignoring_stack <- [];
t.escaped_value <- 0;
t.full_sexps <- 0;
t.offset <- pos.offset;
t.line_number <- pos.line;
t.bol_offset <- pos.offset - pos.col;
reset_user_state t;
Buffer.clear t.atom_buffer
type context = Sexp_comment | Sexp
let is_ignoring state =
match state.ignoring_stack with
| _ :: _ -> true
| [] -> false
let is_not_ignoring state =
not (is_ignoring state)
let context state =
if is_not_ignoring state then
Sexp
else
Sexp_comment
let has_unclosed_paren state = state.depth > 0
let set_error_state state = state.automaton_state <- error_state
module Old_parser_cont_state = struct
type t =
| Parsing_toplevel_whitespace
| Parsing_nested_whitespace
| Parsing_atom
| Parsing_list
| Parsing_sexp_comment
| Parsing_block_comment
[@@deriving_inline sexp_of]
let sexp_of_t =
(function
| Parsing_toplevel_whitespace ->
Ppx_sexp_conv_lib.Sexp.Atom "Parsing_toplevel_whitespace"
| Parsing_nested_whitespace ->
Ppx_sexp_conv_lib.Sexp.Atom "Parsing_nested_whitespace"
| Parsing_atom -> Ppx_sexp_conv_lib.Sexp.Atom "Parsing_atom"
| Parsing_list -> Ppx_sexp_conv_lib.Sexp.Atom "Parsing_list"
| Parsing_sexp_comment ->
Ppx_sexp_conv_lib.Sexp.Atom "Parsing_sexp_comment"
| Parsing_block_comment ->
Ppx_sexp_conv_lib.Sexp.Atom "Parsing_block_comment" : t ->
Ppx_sexp_conv_lib.Sexp.t)
[@@@end]
end
module Error = struct
type t =
{ position : Positions.pos
; message : string
; old_parser_exn : [ `Parse_error | `Failure ]
}
let sexp_of_t { position; message; old_parser_exn = _ } : Sexp.t =
List
[ List [ Atom "position"; Positions.sexp_of_pos position ]
; List [ Atom "message" ; sexp_of_string message ]
]
let position t = t.position
let message t = t.message
let old_parser_exn t = t.old_parser_exn
end
exception Parse_error of Error.t [@@deriving_inline sexp]
let () =
Ppx_sexp_conv_lib.Conv.Exn_converter.add
([%extension_constructor Parse_error])
(function
| Parse_error v0 ->
let v0 = Error.sexp_of_t v0 in
Ppx_sexp_conv_lib.Sexp.List
[Ppx_sexp_conv_lib.Sexp.Atom
"parser_automaton_internal.ml.Public.Parse_error";
v0]
| _ -> assert false)
[@@@end]
let sexp_of_stack : stack -> Sexp.t = function
| Sexp (sexp, Empty) -> sexp
| _ -> failwith "Parser_automaton.sexp_of_stack"
let sexps_of_stack =
let rec loop acc : stack -> Sexp.t list = function
| Empty -> acc
| Open _ -> failwith "Parser_automaton.sexps_of_stack"
| Sexp (sexp, stack) -> loop (sexp :: acc) stack
in
fun stack -> loop [] stack
let sexps_cst_of_stack =
let rec loop acc (stack : stack_cst) =
match stack with
| Empty -> acc
| T_or_comment (t, stack) -> loop (t :: acc) stack
| Open _ | In_sexp_comment _ -> failwith "Parser_automaton.sexps_cst_of_stack"
in
fun stack -> loop [] stack
let automaton_state state = state.automaton_state
end
open Public
module Error = struct
include Error
module Reason = struct
type t =
| Unexpected_char_parsing_hex_escape
| Unexpected_char_parsing_dec_escape
| Unterminated_quoted_string
| Unterminated_block_comment
| Escape_sequence_out_of_range
| Unclosed_paren
| Too_many_sexps
| Closed_paren_without_opened
| Comment_token_in_unquoted_atom
| Sexp_comment_without_sexp
| Unexpected_character_after_cr
| No_sexp_found_in_input
| Automaton_in_error_state
end
let raise : type a b. (a, b) state -> at_eof:bool -> Reason.t -> _
= fun state ~at_eof reason ->
set_error_state state;
let message =
match reason with
| Unexpected_char_parsing_hex_escape ->
"unterminated hexadecimal escape sequence"
| Unexpected_char_parsing_dec_escape ->
"unterminated decimal escape sequence"
| Unterminated_quoted_string ->
"unterminated quoted string"
| Unterminated_block_comment ->
"unterminated block comment"
| Escape_sequence_out_of_range ->
"escape sequence in quoted string out of range"
| Unclosed_paren ->
"unclosed parentheses at end of input"
| Too_many_sexps ->
"s-expression followed by data"
| Closed_paren_without_opened ->
"unexpected character: ')'"
| Comment_token_in_unquoted_atom ->
if String.equal (Buffer.contents state.atom_buffer) "|" then
"illegal end of comment"
else
"comment tokens in unquoted atom"
| Sexp_comment_without_sexp ->
"unterminated sexp comment"
| Unexpected_character_after_cr ->
if at_eof then
"unexpected end of input after carriage return"
else
"unexpected character after carriage return"
| No_sexp_found_in_input ->
"no s-expression found in input"
| Automaton_in_error_state ->
failwith "Parsexp.Parser_automaton: parser is dead"
in
let old_parser_exn =
match reason, at_eof with
| Too_many_sexps, _
| _, true -> `Failure
| Comment_token_in_unquoted_atom, _
when String.equal (Buffer.contents state.atom_buffer) "|" ->
`Failure
| _ -> `Parse_error
in
let position : Positions.pos =
{ line = state.line_number
; col = state.offset - state.bol_offset
; offset = state.offset
}
in
raise (Parse_error { position; message; old_parser_exn })
end
type nonrec context = context = Sexp_comment | Sexp
let context = context
type ('u, 's) action = ('u, 's) state -> char -> 's -> 's
type ('u, 's) epsilon_action = ('u, 's) state -> 's -> 's
let current_pos ?(delta=0) state : Positions.pos =
let offset = state.offset + delta in
{ line = state.line_number
; col = offset - state.bol_offset
; offset = offset
}
let set_automaton_state state x = state.automaton_state <- x
let advance state = state.offset <- state.offset + 1
let advance_eol : type u s. (u, s) state -> unit = fun state ->
let newline_offset = state.offset in
state.offset <- newline_offset + 1;
state.bol_offset <- state.offset;
state.line_number <- state.line_number + 1;
match state.kind with
| Positions ->
Positions.Builder.add_newline state.user_state ~offset:newline_offset
| Sexp_with_positions ->
Positions.Builder.add_newline state.user_state ~offset:newline_offset
| _ -> ()
let block_comment_depth state = state.block_comment_depth
let add_token_char : type u s. (u, s) action = fun state char stack ->
match state.kind with
| Cst ->
Buffer.add_char state.user_state.token_buffer char;
stack
| _ -> stack
let add_atom_char state c stack =
Buffer.add_char state.atom_buffer c;
stack
let add_quoted_atom_char state c stack =
Buffer.add_char state.atom_buffer c;
add_token_char state c stack
let check_new_sexp_allowed state =
let is_single = match state.mode with Single -> true | _ -> false in
if is_single && state.full_sexps > 0 && is_not_ignoring state then
Error.raise state ~at_eof:false Too_many_sexps
let add_pos state ~delta =
Positions.Builder.add state.user_state ~offset:(state.offset + delta)
let add_first_char : type u s. (u, s) action = fun state char stack ->
check_new_sexp_allowed state;
Buffer.add_char state.atom_buffer char;
stack
let eps_add_first_char_hash : type u s. (u, s) epsilon_action = fun state stack ->
check_new_sexp_allowed state;
Buffer.add_char state.atom_buffer '#';
stack
let start_quoted_string : type u s. (u, s) action = fun state _char stack ->
check_new_sexp_allowed state;
match state.kind with
| Positions ->
if is_not_ignoring state then
add_pos state ~delta:0;
stack
| Sexp_with_positions ->
if is_not_ignoring state then
add_pos state ~delta:0;
stack
| Cst ->
state.user_state.token_start_pos <- current_pos state;
Buffer.add_char state.user_state.token_buffer '"';
stack
| Sexp -> stack
let add_escaped state c stack =
let c' =
match c with
| 'n' -> '\n'
| 'r' -> '\r'
| 'b' -> '\b'
| 't' -> '\t'
| '\\' | '\'' | '"' -> c
| _ -> Buffer.add_char state.atom_buffer '\\'; c
in
Buffer.add_char state.atom_buffer c';
add_token_char state c stack
let eps_add_escaped_cr state stack =
Buffer.add_char state.atom_buffer '\r';
stack
let dec_val c = Char.code c - Char.code '0'
let hex_val c =
match c with
| '0'..'9' -> Char.code c - Char.code '0'
| 'a'..'f' -> Char.code c - Char.code 'a' + 10
| _ -> Char.code c - Char.code 'A' + 10
let add_dec_escape_char state c stack =
state.escaped_value <- state.escaped_value * 10 + dec_val c;
add_token_char state c stack
let add_last_dec_escape_char state c stack =
let value = state.escaped_value * 10 + dec_val c in
state.escaped_value <- 0;
if value > 255 then Error.raise state ~at_eof:false Escape_sequence_out_of_range;
Buffer.add_char state.atom_buffer (Char.chr value);
add_token_char state c stack
let comment_add_last_dec_escape_char state c stack =
let value = state.escaped_value * 10 + dec_val c in
state.escaped_value <- 0;
if value > 255 then Error.raise state ~at_eof:false Escape_sequence_out_of_range;
add_token_char state c stack
let add_hex_escape_char state c stack =
state.escaped_value <- (state.escaped_value lsl 4) lor hex_val c;
add_token_char state c stack
let add_last_hex_escape_char state c stack =
let value = (state.escaped_value lsl 4) lor hex_val c in
state.escaped_value <- 0;
Buffer.add_char state.atom_buffer (Char.chr value);
add_token_char state c stack
let opening : type u s. (u, s) state -> char -> s -> s = fun state _char stack ->
check_new_sexp_allowed state;
state.depth <- state.depth + 1;
match state.kind with
| Positions ->
if is_not_ignoring state then
add_pos state ~delta:0;
stack
| Sexp ->
if is_not_ignoring state then
Open stack
else
stack
| Sexp_with_positions ->
if is_not_ignoring state then begin
add_pos state ~delta:0;
Open stack
end else
stack
| Cst ->
Open (current_pos state, stack)
let do_reset_positions state =
Positions.Builder.reset state.user_state
{ line = state.line_number
; col = state.offset - state.bol_offset
; offset = state.offset
}
let reset_positions : type u s. (u, s) state -> unit = fun state ->
match state.kind with
| Positions -> do_reset_positions state
| Sexp_with_positions -> do_reset_positions state
| Sexp -> ()
| Cst -> ()
let toplevel_sexp_or_comment_added state stack ~delta =
match state.mode with
| Single | Many -> stack
| Eager { got_sexp = f; _ } ->
let saved_offset = state.offset in
state.offset <- state.offset + delta;
let saved_full_sexps = state.full_sexps in
match f state stack with
| exception e -> set_error_state state; raise e
| stack ->
assert (state.offset = saved_offset + delta &&
state.full_sexps = saved_full_sexps);
state.offset <- saved_offset;
reset_positions state;
stack
let is_top_level state =
is_not_ignoring state && state.depth = 0
let comment_added_assuming_cst state stack ~delta =
if is_top_level state then
toplevel_sexp_or_comment_added state stack ~delta
else
stack
let maybe_pop_ignoring_stack state =
match state.ignoring_stack with
| inner_comment_depth :: _tl when inner_comment_depth > state.depth ->
Error.raise state ~at_eof:false Sexp_comment_without_sexp;
| inner_comment_depth :: tl when inner_comment_depth = state.depth ->
state.ignoring_stack <- tl;
true
| _ ->
false
let sexp_added : type u s. (u, s) state -> s -> delta:int -> s =
fun state stack ~delta ->
let is_comment = maybe_pop_ignoring_stack state in
if is_top_level state
then
begin
if not is_comment then
state.full_sexps <- state.full_sexps + 1;
if not is_comment || (match state.kind with Cst -> true | _ -> false) then
toplevel_sexp_or_comment_added state stack ~delta
else
stack
end
else
stack
let rec make_list acc : stack -> stack = function
| Empty -> assert false
| Open stack -> Sexp (List acc, stack)
| Sexp (sexp, stack) -> make_list (sexp :: acc) stack
let add_comment_to_stack_cst comment (stack : stack_cst) : stack_cst =
match stack with
| In_sexp_comment r ->
In_sexp_comment { r with rev_comments = comment :: r.rev_comments }
| _ ->
T_or_comment (Comment comment, stack)
let add_sexp_to_stack_cst sexp : stack_cst -> stack_cst = function
| In_sexp_comment { hash_semi_pos; rev_comments; stack } ->
let comment : Cst.comment =
Sexp_comment { hash_semi_pos; comments = List.rev rev_comments; sexp }
in
add_comment_to_stack_cst comment stack
| stack ->
T_or_comment (Sexp sexp, stack)
let rec make_list_cst end_pos acc : stack_cst -> stack_cst =
function
| T_or_comment (t, stack) ->
make_list_cst end_pos (t :: acc) stack
| Open (start_pos, stack) ->
let sexp : Cst.t = List { loc = { start_pos; end_pos }; elements = acc } in
add_sexp_to_stack_cst sexp stack
| Empty | In_sexp_comment _ ->
assert false
let closing : type u s. (u, s) state -> char -> s -> s = fun state _char stack ->
if state.depth > 0 then begin
let stack =
match state.kind with
| Positions ->
if is_not_ignoring state then
add_pos state ~delta:0;
stack
| Sexp ->
if is_not_ignoring state then
make_list [] stack
else
stack
| Sexp_with_positions ->
if is_not_ignoring state then begin
add_pos state ~delta:0;
make_list [] stack
end else
stack
| Cst ->
make_list_cst (current_pos state ~delta:1) [] stack
in
state.depth <- state.depth - 1;
sexp_added state stack ~delta:1
end
else
Error.raise state ~at_eof:false Closed_paren_without_opened
let make_loc ?(delta=0) state : Positions.range =
{ start_pos = state.user_state.token_start_pos
; end_pos = current_pos state ~delta
}
let add_non_quoted_atom_pos state ~atom =
let len = String.length atom in
if len = 1 then
Positions.Builder.add_twice state.user_state ~offset:(state.offset - 1)
else begin
add_pos state ~delta:(-len);
add_pos state ~delta:(-1);
end
let eps_push_atom : type u s. (u, s) epsilon_action = fun state stack ->
let str = Buffer.contents state.atom_buffer in
Buffer.clear state.atom_buffer;
let stack =
match state.kind with
| Positions ->
if is_not_ignoring state then
add_non_quoted_atom_pos state ~atom:str;
stack
| Sexp ->
if is_not_ignoring state then
Sexp (Atom str, stack)
else
stack
| Sexp_with_positions ->
if is_not_ignoring state then begin
add_non_quoted_atom_pos state ~atom:str;
Sexp (Atom str, stack)
end else
stack
| Cst ->
let loc : Positions.range =
{ start_pos = current_pos state ~delta:(-(String.length str))
; end_pos = current_pos state ~delta:0
}
in
let sexp : Cst.t =
Atom { loc
; atom = str
; unescaped = Some str
}
in
add_sexp_to_stack_cst sexp stack
in
sexp_added state stack ~delta:0
let push_quoted_atom : type u s. (u, s) action = fun state _char stack ->
let str = Buffer.contents state.atom_buffer in
Buffer.clear state.atom_buffer;
let stack =
match state.kind with
| Positions ->
if is_not_ignoring state then
add_pos state ~delta:0;
stack
| Sexp ->
if is_not_ignoring state then
Sexp (Atom str, stack)
else
stack
| Sexp_with_positions ->
if is_not_ignoring state then begin
add_pos state ~delta:0;
Sexp (Atom str, stack)
end else
stack
| Cst ->
let buf = state.user_state.token_buffer in
Buffer.add_char buf '"';
let s = Buffer.contents buf in
Buffer.clear buf;
let sexp : Cst.t =
Atom { loc = make_loc state ~delta:1
; atom = str
; unescaped = Some s
}
in
add_sexp_to_stack_cst sexp stack
in
sexp_added state stack ~delta:1
let start_sexp_comment : type u s. (u, s) action = fun state _char stack ->
state.ignoring_stack <- state.depth :: state.ignoring_stack;
match state.kind with
| Cst ->
In_sexp_comment { hash_semi_pos = current_pos state ~delta:(-1)
; rev_comments = []
; stack }
| _ -> stack
let start_block_comment : type u s. (u, s) state -> char -> s -> s = fun state char stack ->
state.block_comment_depth <- state.block_comment_depth + 1;
match state.kind with
| Positions -> stack
| Sexp -> stack
| Sexp_with_positions -> stack
| Cst ->
if state.block_comment_depth = 1 then begin
state.user_state.token_start_pos <- current_pos state ~delta:(-1);
Buffer.add_char state.user_state.token_buffer '#'
end;
Buffer.add_char state.user_state.token_buffer char;
stack
let end_block_comment : type u s. (u, s) state -> char -> s -> s = fun state char stack ->
state.block_comment_depth <- state.block_comment_depth - 1;
match state.kind with
| Positions -> stack
| Sexp -> stack
| Sexp_with_positions -> stack
| Cst ->
let buf = state.user_state.token_buffer in
Buffer.add_char buf char;
if state.block_comment_depth = 0 then begin
let s = Buffer.contents buf in
Buffer.clear buf;
let comment : Cst.comment =
Plain_comment { loc = make_loc state ~delta:1
; comment = s
}
in
let stack = add_comment_to_stack_cst comment stack in
comment_added_assuming_cst state stack ~delta:1
end else
stack
let start_line_comment : type u s. (u, s) action = fun state char stack ->
match state.kind with
| Cst ->
state.user_state.token_start_pos <- current_pos state;
Buffer.add_char state.user_state.token_buffer char;
stack
| _ -> stack
let end_line_comment : type u s. (u, s) epsilon_action = fun state stack ->
match state.kind with
| Positions -> stack
| Sexp -> stack
| Sexp_with_positions -> stack
| Cst ->
let buf = state.user_state.token_buffer in
let s = Buffer.contents buf in
Buffer.clear buf;
let comment : Cst.comment =
Plain_comment { loc = make_loc state
; comment = s
}
in
let stack = add_comment_to_stack_cst comment stack in
comment_added_assuming_cst state stack ~delta:0
let eps_eoi_check : type u s. (u, s) epsilon_action = fun state stack ->
if state.depth > 0 then Error.raise state ~at_eof:true Unclosed_paren;
if is_ignoring state then Error.raise state ~at_eof:true Sexp_comment_without_sexp;
if state.full_sexps = 0 then (
match state.mode with
| Many
| Eager { no_sexp_is_error = false; _ } -> ()
| Single | Eager { no_sexp_is_error = true; _ } ->
Error.raise state ~at_eof:true No_sexp_found_in_input
);
stack