Module: RuboCop::AST::BasicLiteralNode
- Included in:
- StrNode, SymbolNode
- Defined in:
- lib/rubocop/ast/node/mixin/basic_literal_node.rb
Overview
Common functionality for primitive literal nodes: ‘sym`, `str`, `int`, `float`, …
Instance Method Summary collapse
-
#value ⇒ mixed
Returns the value of the literal.
Instance Method Details
#value ⇒ mixed
Returns the value of the literal.
11 12 13 |
# File 'lib/rubocop/ast/node/mixin/basic_literal_node.rb', line 11 def value node_parts[0] end |