Class Rake::InvocationChain::EmptyInvocationChain
In: lib/rake.rb
Parent: Object

Methods

append   member?   to_s  

Public Instance methods

[Source]

     # File lib/rake.rb, line 383
383:       def append(value)
384:         InvocationChain.new(value, self)
385:       end

[Source]

     # File lib/rake.rb, line 380
380:       def member?(obj)
381:         false
382:       end

[Source]

     # File lib/rake.rb, line 386
386:       def to_s
387:         "TOP"
388:       end

[Validate]