-module(roundabout@node). -compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch, inline]). -define(FILEPATH, "src/roundabout/node.gleam"). -export_type([segment/0, info/0, node_/0]). -type segment() :: {seg_lit, roundabout@constant:constant()} | {seg_param, roundabout@parameter:parameter()}. -type info() :: {info, roundabout@type_name:type_name(), list(segment())}. -type node_() :: {node, info(), list(node_())}.