mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Remove unused RT parameter
This commit is contained in:
parent
27acf7bced
commit
51a47fec98
6 changed files with 8 additions and 8 deletions
|
@ -7,7 +7,7 @@ module Spectator::Mocks
|
||||||
super(name, source, args)
|
super(name, source, args)
|
||||||
end
|
end
|
||||||
|
|
||||||
def call(_args : GenericArguments(T2, NT2), rt : RT.class) forall T2, NT2, RT
|
def call(_args : GenericArguments(T2, NT2)) forall T2, NT2
|
||||||
raise @exception
|
raise @exception
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -14,10 +14,10 @@ module Spectator::Mocks
|
||||||
@name == call.name
|
@name == call.name
|
||||||
end
|
end
|
||||||
|
|
||||||
abstract def call(args : GenericArguments(T, NT), rt : RT.class) forall T, NT, RT
|
abstract def call(args : GenericArguments(T, NT)) forall T, NT
|
||||||
|
|
||||||
def call!(args : GenericArguments(T, NT), rt : RT.class) : RT forall T, NT, RT
|
def call!(args : GenericArguments(T, NT), _rt : RT.class) : RT forall T, NT, RT
|
||||||
value = call(args, rt)
|
value = call(args)
|
||||||
if value.is_a?(RT)
|
if value.is_a?(RT)
|
||||||
value.as(RT)
|
value.as(RT)
|
||||||
else
|
else
|
||||||
|
|
|
@ -10,7 +10,7 @@ module Spectator::Mocks
|
||||||
raise ArgumentError.new("Values must have at least one item") if @values.size < 1
|
raise ArgumentError.new("Values must have at least one item") if @values.size < 1
|
||||||
end
|
end
|
||||||
|
|
||||||
def call(_args : GenericArguments(T2, NT2), rt : RT.class) forall T2, NT2, RT
|
def call(_args : GenericArguments(T2, NT2)) forall T2, NT2
|
||||||
value = @values[@index]
|
value = @values[@index]
|
||||||
@index += 1 if @index < @values.size - 1
|
@index += 1 if @index < @values.size - 1
|
||||||
value
|
value
|
||||||
|
|
|
@ -4,7 +4,7 @@ require "./value_method_stub"
|
||||||
|
|
||||||
module Spectator::Mocks
|
module Spectator::Mocks
|
||||||
class NilMethodStub < GenericMethodStub(Nil)
|
class NilMethodStub < GenericMethodStub(Nil)
|
||||||
def call(_args : GenericArguments(T, NT), _rt : RT.class) forall T, NT, RT
|
def call(_args : GenericArguments(T, NT)) forall T, NT
|
||||||
nil
|
nil
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ module Spectator::Mocks
|
||||||
ProcMethodStub.new(name, source, block, args)
|
ProcMethodStub.new(name, source, block, args)
|
||||||
end
|
end
|
||||||
|
|
||||||
def call(_args : GenericArguments(T2, NT2), rt : RT.class) forall T2, NT2, RT
|
def call(_args : GenericArguments(T2, NT2)) forall T2, NT2
|
||||||
@proc.call
|
@proc.call
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -7,7 +7,7 @@ module Spectator::Mocks
|
||||||
super(name, source, args)
|
super(name, source, args)
|
||||||
end
|
end
|
||||||
|
|
||||||
def call(_args : GenericArguments(T2, NT2), rt : RT.class) forall T2, NT2, RT
|
def call(_args : GenericArguments(T2, NT2)) forall T2, NT2
|
||||||
@value
|
@value
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue