Class: Dentaku::AST::Literal

Inherits:
Node
  • Object
show all
Defined in:
lib/dentaku/ast/literal.rb

Direct Known Subclasses

DateTime, Logical, Numeric, String

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Node

arity, peek, precedence

Constructor Details

#initialize(token) ⇒ Literal

Returns a new instance of Literal.



6
7
8
9
# File 'lib/dentaku/ast/literal.rb', line 6

def initialize(token)
  @value = token.value
  @type  = token.category
end

Instance Attribute Details

#typeObject (readonly)

Returns the value of attribute type.



4
5
6
# File 'lib/dentaku/ast/literal.rb', line 4

def type
  @type
end

Instance Method Details

#dependenciesObject



15
16
17
# File 'lib/dentaku/ast/literal.rb', line 15

def dependencies(*)
  []
end

#valueObject



11
12
13
# File 'lib/dentaku/ast/literal.rb', line 11

def value(*)
  @value
end