package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type (!'M, !'T) t = 'M * ('M, 'T) t'
and !'M name =
  1. | Identifier of 'M Identifier.t
  2. | NamespacedName of 'M NamespacedName.t
and (!'M, !'T) value =
  1. | Literal of 'M * Literal.t
  2. | ExpressionContainer of 'M * ('M, 'T) ExpressionContainer.t
and (!'M, !'T) t' = {
  1. name : 'M name;
  2. value : ('M, 'T) value option;
}