Current section

Files

Jump to
hxl lib hxl ast template_expr.ex
Raw

lib/hxl/ast/template_expr.ex

defmodule HXL.Ast.TemplateExpr do
@moduledoc false
defstruct [:delimiter, :lines]
@type t :: %__MODULE__{
delimiter: binary(),
lines: list(binary())
}
end