Current section

Files

Jump to
hxl lib hxl ast function_call.ex
Raw

lib/hxl/ast/function_call.ex

defmodule HXL.Ast.FunctionCall do
@moduledoc false
defstruct [:args, :arity, :name]
@type t :: %__MODULE__{
args: list(),
arity: non_neg_integer(),
name: String.t()
}
end