planus-codegen 1.3.0

Internal codegen library for planus.
Documentation
{%- if info.is_root -%}
digraph G
{
  node[ shape = none ];
  rankdir=LR;
{% endif %}
{%- for child in children -%}
    {{- Namespace(child)|safe -}}
{% endfor -%}
{%- for child in declarations %}
{% match child -%}
    {%- when BackendDeclaration::Struct(inner) -%}{{- Struct(inner) }}
    {%- when BackendDeclaration::Table(inner) -%}{{- Table(inner) }}
    {%- when BackendDeclaration::Enum(inner) -%}{{- Enum(inner) }}
    {%- when BackendDeclaration::Union(inner) -%}{{- Union(inner) }}
    {%- when BackendDeclaration::RpcService(inner) -%}{{- RpcService(inner) }}
{% endmatch %}
{% endfor -%}

{%- if info.is_root -%}
}
{%- endif -%}