Class: SyntaxTree::RationalLiteral

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

Overview

RationalLiteral represents the use of a rational number literal.

1r

Instance Attribute Summary collapse

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#construct_keys, #pretty_print, #to_json

Constructor Details

#initialize(value:, location:, comments: []) ⇒ RationalLiteral

Returns a new instance of RationalLiteral.



7308
7309
7310
7311
7312
# File 'lib/syntax_tree/node.rb', line 7308

def initialize(value:, location:, comments: [])
  @value = value
  @location = location
  @comments = comments
end

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



7306
7307
7308
# File 'lib/syntax_tree/node.rb', line 7306

def comments
  @comments
end

#valueObject (readonly)

String

the rational number literal



7303
7304
7305
# File 'lib/syntax_tree/node.rb', line 7303

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



7314
7315
7316
# File 'lib/syntax_tree/node.rb', line 7314

def accept(visitor)
  visitor.visit_rational(self)
end

#child_nodesObject Also known as: deconstruct



7318
7319
7320
# File 'lib/syntax_tree/node.rb', line 7318

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



7324
7325
7326
# File 'lib/syntax_tree/node.rb', line 7324

def deconstruct_keys(_keys)
  { value: value, location: location, comments: comments }
end

#format(q) ⇒ Object



7328
7329
7330
# File 'lib/syntax_tree/node.rb', line 7328

def format(q)
  q.text(value)
end