Phase clone subtree by sovetnik active
Project: Disco

clone subtree

description of clone subtree phase

Back to project | MindMap

To clone this phase add umwelt to your project deps and run


New
signature new_disco created

make disco great again

lib/disco/discord.ex
[
  @doc("make disco great again"),
  @spec(new_disco(Bureaucracy.t()) :: Discord.t()),
  def new_disco(%Bureaucracy{} = disco_buro_arg) do
  end
]
test/disco/discord_test.exs
describe("new_disco / 1") do
  test "general clause" do
  end
end

signature new_confuse created

another confuse

lib/disco/confusion.ex
[
  @doc("another confuse"),
  @spec(new_confuse(Discord.t()) :: Confusion.t()),
  def new_confuse(%Discord{} = confuse_disco_arg) do
  end
]
test/disco/confusion_test.exs
describe("new_confuse / 1") do
  test "general clause" do
  end
end

Moved
signature discordize moved

bring some discord

lib/disco/discord.ex
[
  @doc("bring some discord"),
  @spec(discordize(Confusion.t(), Chaos.t()) :: Discord.t()),
  def discordize(%Chaos{} = disco_chaos_arg, %Confusion{} = disco_confuse_arg) do
  end
]
test/disco/discord_test.exs
describe("discordize / 2") do
  test "general clause" do
  end
end

signature confuse moved

do the confusion

lib/disco/confusion.ex
[
  @doc("do the confusion"),
  @spec(confuse(Chaos.t(), Bureaucracy.t()) :: Confusion.t()),
  def confuse(%Bureaucracy{} = confuse_buro_arg, %Chaos{} = confuse_chaos_arg) do
  end
]
test/disco/confusion_test.exs
describe("confuse / 2") do
  test "general clause" do
  end
end

concept Chaos moved

Explanation of Chaos

lib/disco/aftermath/chaos.ex
defmodule Disco.Aftermath.Chaos do
  @moduledoc "Explanation of Chaos"
  alias Disco.Aftermath.Chaos
  alias Disco.Discord
  @type t() :: %__MODULE__{chaos_field: atom}
  defstruct chaos_field: nil
  @doc "make some chaos"
  @spec chaotize(Discord.t()) :: Chaos.t()
  def chaotize(%Discord{} = chaos_discord_arg) do
  end
end
test/disco/aftermath/chaos_test.exs
defmodule Disco.Aftermath.ChaosTest do
  use ExUnit.Case, async: true
  alias Disco.Aftermath.Chaos
  alias Disco.Discord

  describe("chaotize / 1") do
    test "general clause" do
    end
  end
end


Rendering...