Current section

Files

Jump to
cucumber_expressions lib cucumber_expressions matcher data.ex
Raw

lib/cucumber_expressions/matcher/data.ex

defmodule CucumberExpressions.Matcher.Data do
@moduledoc false
import Record
defrecord :matcher,
current_word: "",
params: [],
parameter_types: %{},
only_spaces_so_far?: false,
ctx: %{}
@type t() ::
record(:matcher,
current_word: String.t(),
params: list,
parameter_types: map,
only_spaces_so_far?: boolean,
ctx: map
)
end