Class: Curlybars::Node::String

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#stringObject

Returns the value of attribute string

Returns:

  • (Object)

    the current value of string



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

def string
  @string
end

Instance Method Details

#cache_keyObject



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

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

#compileObject



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

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

#validate(branches) ⇒ Object



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

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