Module Values_1.CodeGenNodeSource

Represents a node in a directed acyclic graph (DAG)

Sourcetype nonrec t = {
  1. id : CodeGenIdentifier.t;
    (*

    A node identifier that is unique within the node's graph.

    *)
  2. nodeType : CodeGenNodeType.t;
    (*

    The type of node that this is.

    *)
  3. args : CodeGenNodeArgs.t;
    (*

    Properties of the node, in the form of name-value pairs.

    *)
  4. lineNumber : Values_0.Integer.t option;
    (*

    The line number of the node.

    *)
}
Sourceval context_ : string
Sourceval make : ?lineNumber:??? -> id:CodeGenIdentifier.t -> nodeType:CodeGenNodeType.t -> args:CodeGenNodeArgs.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Values_0.Integer.t | `List of [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `String of CodeGenArgName.t ]) list ] list | `String of CodeGenIdentifier.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t