Cobol_parser.OutputsOutput types for the engine
Gathers some types used to define outputs for the parser engine.
type tokens_with_locs =
Cobol_parser__.Grammar_tokens.token Cobol_common.Srcloc.TYPES.with_loc listtype artifacts = {tokens : tokens_with_locs Stdlib.Lazy.t;pplog : Cobol_preproc.Trace.log;rev_comments : Cobol_preproc.Text.comments;rev_ignored : Cobol_common.Srcloc.TYPES.lexloc list;}type ('result, 'memo) output = | Only : 'result -> ('result, Cobol_common.Behaviors.amnesic) output| WithArtifacts : 'result
* artifacts -> ('result, Cobol_common.Behaviors.eidetic) outputThe output of parsing functions depends on its memorization abilities:
'memo = Cobol_common.Behaviors.amnesic) only returns a parsing result (of type 'result);'memo = Cobol_common.Behaviors.eidetic) additionally returns some parsing artefacts.type 'm parsed_compilation_group =
(Cobol_ptree.compilation_group option, 'm) outputinclude sig ... endmodule TYPES : sig ... endval result :
?diags:Cobol_parser__.Parser_diagnostics.ALL.t ->
'a ->
'a with_diagsval simple_result : 'a -> 'a with_diagsval some_result :
?diags:Cobol_parser__.Parser_diagnostics.ALL.t ->
'a ->
'a option with_diagsval no_result :
diags:Cobol_parser__.Parser_diagnostics.ALL.t ->
'a option with_diagsval with_diags : 'a -> Cobol_parser__.Parser_diagnostics.ALL.t -> 'a with_diagsval with_more_diags :
diags:Cobol_parser__.Parser_diagnostics.ALL.t ->
'a with_diags ->
'a with_diagsval result_only : 'a with_diags -> 'aval forget_result : 'a with_diags -> Cobol_parser__.Parser_diagnostics.ALL.tval more_result : f:('a -> 'b with_diags) -> 'a with_diags -> 'b with_diagsval map_result : f:('a -> 'b) -> 'a with_diags -> 'b with_diagsval map2_results :
f:('a -> 'b -> 'c with_diags) ->
'a with_diags ->
'b with_diags ->
'c with_diagsval map_some_result :
f:('a -> 'b) ->
'a option with_diags ->
'b option with_diagsval merge_results :
f:('a -> 'b -> 'c) ->
'a with_diags ->
'b with_diags ->
'c with_diagsval cons_option_result :
'a option with_diags ->
'a list with_diags ->
'a list with_diagsval translate_diags : 'a with_diags -> 'a Cobol_common.Diagnostics.with_diagsval show_n_forget :
?set_status:bool ->
?min_level:Cobol_common.Diagnostics.severity ->
?ppf:Stdlib.Format.formatter ->
'a with_diags ->
'aval sink_result :
?set_status:bool ->
?ppf:Stdlib.Format.formatter ->
'a with_diags ->
unit