class Rake::InvocationChain::EmptyInvocationChain

Public Instance Methods

append(value) click to toggle source
   # File lib/rake/invocation_chain.rb
41 def append(value)
42   InvocationChain.new(value, self)
43 end
member?(obj) click to toggle source
   # File lib/rake/invocation_chain.rb
38 def member?(obj)
39   false
40 end
to_s() click to toggle source
   # File lib/rake/invocation_chain.rb
44 def to_s
45   "TOP"
46 end