Class: SyntaxTree::Params::OptionalFormatter

Inherits:
Object
  • Object
show all
Defined in:
lib/syntax_tree/node.rb

Overview

Formats the optional position of the parameters. This includes the label, as well as the default value.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, value) ⇒ OptionalFormatter

Returns a new instance of OptionalFormatter.



8221
8222
8223
8224
# File 'lib/syntax_tree/node.rb', line 8221

def initialize(name, value)
  @name = name
  @value = value
end

Instance Attribute Details

#nameObject (readonly)

Ident

the name of the parameter



8216
8217
8218
# File 'lib/syntax_tree/node.rb', line 8216

def name
  @name
end

#valueObject (readonly)

Node

the value of the parameter



8219
8220
8221
# File 'lib/syntax_tree/node.rb', line 8219

def value
  @value
end

Instance Method Details

#commentsObject



8226
8227
8228
# File 'lib/syntax_tree/node.rb', line 8226

def comments
  []
end

#format(q) ⇒ Object



8230
8231
8232
8233
8234
# File 'lib/syntax_tree/node.rb', line 8230

def format(q)
  q.format(name)
  q.text(" = ")
  q.format(value)
end