-module(roundabout@internal@node). -compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch, inline]). -define(FILEPATH, "src/roundabout/internal/node.gleam"). -export_type([segment/0, info/0, node_/0]). -if(?OTP_RELEASE >= 27). -define(MODULEDOC(Str), -moduledoc(Str)). -define(DOC(Str), -doc(Str)). -else. -define(MODULEDOC(Str), -compile([])). -define(DOC(Str), -compile([])). -endif. ?MODULEDOC(false). -type segment() :: {seg_fixed, roundabout@internal@fixed:fixed()} | {seg_param, roundabout@internal@parameter:parameter(roundabout@internal@qualified:unqualified())}. -type info() :: {info, roundabout@internal@name:name(), list(segment())}. -type node_() :: {node, info(), list(node_())}.