class SC::InvocationChain::EmptyInvocationChain
Public Instance Methods
already_invoked?(task)
click to toggle source
# File lib/sproutcore/buildfile/invocation_chain.rb, line 57 def already_invoked?(task); false; end
append(value)
click to toggle source
# File lib/sproutcore/buildfile/invocation_chain.rb, line 51 def append(value) InvocationChain.new(value, self) end
member?(obj)
click to toggle source
# File lib/sproutcore/buildfile/invocation_chain.rb, line 48 def member?(obj) false end
to_s()
click to toggle source
# File lib/sproutcore/buildfile/invocation_chain.rb, line 54 def to_s "TOP" end