Swiftui2Lvn.NeexAstNode (swiftui_2_lvn v0.1.6)

View Source

Represents a node in the Neex AST, the target format for LiveViewNative templates.

This module defines the structure for AST nodes that represent XML-like templates that can be converted to LiveViewNative syntax.

Summary

Types

t()

@type t() :: %Swiftui2Lvn.NeexAstNode{
  attributes: map(),
  children: [t() | String.t()],
  content: String.t() | nil,
  modifiers: [String.t()],
  tag: String.t() | nil
}