Class: Dentaku::AST::Literal
- Inherits:
-
Node
- Object
- Node
- Dentaku::AST::Literal
show all
- Defined in:
- lib/dentaku/ast/literal.rb
Instance Attribute Summary collapse
Instance Method Summary
collapse
Methods inherited from Node
arity, peek, precedence
Constructor Details
#initialize(token) ⇒ 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
#type ⇒ Object
Returns the value of attribute type.
4
5
6
|
# File 'lib/dentaku/ast/literal.rb', line 4
def type
@type
end
|
Instance Method Details
#dependencies ⇒ Object
15
16
17
|
# File 'lib/dentaku/ast/literal.rb', line 15
def dependencies(*)
[]
end
|
#value ⇒ Object
11
12
13
|
# File 'lib/dentaku/ast/literal.rb', line 11
def value(*)
@value
end
|