File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -31,10 +31,12 @@ and intfs acc_units acc = parse
3131 | ws hash ws (name as name) newline { intfs acc_units (add_intf acc name) lexbuf }
3232 | " Implementations imported:" newline { impls acc_units acc lexbuf }
3333 | " File " [^ '\n' ]+ newline { ocamlobjinfo (acc :: acc_units) empty lexbuf }
34+ | [^ '\n' ]* newline { intfs acc_units acc lexbuf }
3435 | _ | eof { acc :: acc_units }
3536and impls acc_units acc = parse
3637 | ws hash ws (name as name) newline { impls acc_units (add_impl acc name) lexbuf }
3738 | " File " [^ '\n' ]+ newline { ocamlobjinfo (acc :: acc_units) empty lexbuf }
39+ | [^ '\n' ]* newline { impls acc_units acc lexbuf }
3840 | _ | eof { acc :: acc_units }
3941
4042and archive acc = parse
Original file line number Diff line number Diff line change @@ -248,5 +248,9 @@ Required globals:
248248Uses unsafe features : no
249249Force link : no
250250|fixture};
251- [% expect {| [ { impl = set {}; intf = set { " m1" ; " m2" } } ] | }]
251+ [% expect {|
252+ [ { impl = set {}; intf = set { " m1" ; " m2" } }
253+ ; { impl = set {}; intf = set { " m3" ; " m4" } }
254+ ]
255+ | }]
252256;;
You can’t perform that action at this time.
0 commit comments