Class: SyntaxTree::JSON::AST::False
- Defined in:
- lib/syntax_tree/json/ast.rb
Overview
This represents a false in the tree.
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(keys) ⇒ Object
Methods inherited from Node
Instance Method Details
#accept(visitor) ⇒ Object
42 43 44 |
# File 'lib/syntax_tree/json/ast.rb', line 42 def accept(visitor) visitor.visit_false(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
46 47 48 |
# File 'lib/syntax_tree/json/ast.rb', line 46 def child_nodes [] end |
#deconstruct_keys(keys) ⇒ Object
52 53 54 |
# File 'lib/syntax_tree/json/ast.rb', line 52 def deconstruct_keys(keys) {} end |