class Dry::Schema::Step

def initialize(type:, name:, executor:, path: Path::EMPTY)

Other tags:
    Api: - private
def initialize(type:, name:, executor:, path: Path::EMPTY)
  @type = type
  @name = name
  @executor = executor
  @path = path
  validate_name(name)
end