Class: Curlybars::Node::Boolean

Inherits:
Struct
  • Object
show all
Defined in:
lib/curlybars/node/boolean.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#booleanObject

Returns the value of attribute boolean

Returns:

  • (Object)

    the current value of boolean



3
4
5
# File 'lib/curlybars/node/boolean.rb', line 3

def boolean
  @boolean
end

Instance Method Details

#cache_keyObject



16
17
18
19
20
21
# File 'lib/curlybars/node/boolean.rb', line 16

def cache_key
  [
    boolean.to_s,
    self.class.name
  ].join("/")
end

#compileObject



4
5
6
7
8
9
10
# File 'lib/curlybars/node/boolean.rb', line 4

def compile
  # NOTE: the following is a heredoc string, representing the ruby code fragment
  # outputted by this node.
  <<-RUBY
    ->() { #{boolean} }
  RUBY
end

#validate(branches) ⇒ Object



12
13
14
# File 'lib/curlybars/node/boolean.rb', line 12

def validate(branches)
  # Nothing to validate here.
end