Current section

Files

Jump to
kielet src kielet@plurals@syntax_error.erl
Raw

src/kielet@plurals@syntax_error.erl

-module(kielet@plurals@syntax_error).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch, inline]).
-define(FILEPATH, "src/kielet/plurals/syntax_error.gleam").
-export_type([syntax_error/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 syntax_error() :: {syntax_error,
integer(),
gleam@option:option(integer()),
binary()}.