Class: SC::InvocationChain::EmptyInvocationChain

Inherits:
Object
  • Object
show all
Defined in:
lib/sproutcore/buildfile/invocation_chain.rb

Instance Method Summary collapse

Instance Method Details

#already_invoked?(task) ⇒ Boolean

Returns:

  • (Boolean)


57
# File 'lib/sproutcore/buildfile/invocation_chain.rb', line 57

def already_invoked?(task); false; end

#append(value) ⇒ Object



51
52
53
# File 'lib/sproutcore/buildfile/invocation_chain.rb', line 51

def append(value)
  InvocationChain.new(value, self)
end

#member?(obj) ⇒ Boolean

Returns:

  • (Boolean)


48
49
50
# File 'lib/sproutcore/buildfile/invocation_chain.rb', line 48

def member?(obj)
  false
end

#to_sObject



54
55
56
# File 'lib/sproutcore/buildfile/invocation_chain.rb', line 54

def to_s
  "TOP"
end