Class Rake::InvocationChain::EmptyInvocationChain |
|
Methods |
Public Instance methods |
append(value) |
# File lib/rake/invocation_chain.rb, line 41 41: def append(value) 42: InvocationChain.new(value, self) 43: end
member?(obj) |
# File lib/rake/invocation_chain.rb, line 38 38: def member?(obj) 39: false 40: end
to_s() |
# File lib/rake/invocation_chain.rb, line 44 44: def to_s 45: "TOP" 46: end