LiveDebugger.Utils.TermParser (LiveDebugger v0.1.4)
View SourceThis module provides functions to parse terms into display tree. Based on Kino.Tree
Summary
Types
@type tree_element() :: %{ kind: String.t(), children: [tree_element()] | nil, content: [display_element()], expanded_before: [display_element()] | nil, expanded_after: [display_element()] | nil }
Functions
@spec term_to_display_tree(term()) :: tree_element()