Values.AutomatedReasoningPolicyAnnotatedLineSourceRepresents a single line of text from a source document, annotated with its line number for precise referencing.
type nonrec t = {lineNumber : Integer.t option;The line number of this text within the source document.
*)lineText : AutomatedReasoningPolicyLineText.t option;The actual text content of this line from the source document.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Integer of Integer.t
| `String of AutomatedReasoningPolicyLineText.t ])
list ]