Class: SyntaxTree::Else
Overview
Else represents the end of an if, unless, or case chain.
if variable
else
end
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#keyword ⇒ Object
readonly
- Kw
-
the else keyword.
-
#statements ⇒ Object
readonly
- Statements
-
the expressions to be executed.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(keyword:, statements:, location:, comments: []) ⇒ Else
constructor
A new instance of Else.
Methods inherited from Node
Constructor Details
#initialize(keyword:, statements:, location:, comments: []) ⇒ Else
Returns a new instance of Else.
3945 3946 3947 3948 3949 3950 |
# File 'lib/syntax_tree/node.rb', line 3945 def initialize(keyword:, statements:, location:, comments: []) @keyword = keyword @statements = statements @location = location @comments = comments end |
Instance Attribute Details
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
3943 3944 3945 |
# File 'lib/syntax_tree/node.rb', line 3943 def comments @comments end |
#keyword ⇒ Object (readonly)
- Kw
-
the else keyword
3937 3938 3939 |
# File 'lib/syntax_tree/node.rb', line 3937 def keyword @keyword end |
#statements ⇒ Object (readonly)
- Statements
-
the expressions to be executed
3940 3941 3942 |
# File 'lib/syntax_tree/node.rb', line 3940 def statements @statements end |
Instance Method Details
#accept(visitor) ⇒ Object
3952 3953 3954 |
# File 'lib/syntax_tree/node.rb', line 3952 def accept(visitor) visitor.visit_else(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
3956 3957 3958 |
# File 'lib/syntax_tree/node.rb', line 3956 def child_nodes [keyword, statements] end |
#deconstruct_keys(keys) ⇒ Object
3962 3963 3964 3965 3966 3967 3968 3969 |
# File 'lib/syntax_tree/node.rb', line 3962 def deconstruct_keys(keys) { keyword: keyword, statements: statements, location: location, comments: comments } end |
#format(q) ⇒ Object
3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 |
# File 'lib/syntax_tree/node.rb', line 3971 def format(q) q.group do q.format(keyword) unless statements.empty? q.indent do q.breakable(force: true) q.format(statements) end end end end |