Class: SyntaxTree::Ensure
Overview
Ensure represents the use of the ensure keyword and its subsequent statements.
begin
ensure
end
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#keyword ⇒ Object
readonly
- Kw
-
the ensure keyword that began this node.
-
#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: []) ⇒ Ensure
constructor
A new instance of Ensure.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(keyword:, statements:, location:, comments: []) ⇒ Ensure
Returns a new instance of Ensure.
4289 4290 4291 4292 4293 4294 |
# File 'lib/syntax_tree/node.rb', line 4289 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
4287 4288 4289 |
# File 'lib/syntax_tree/node.rb', line 4287 def comments @comments end |
#keyword ⇒ Object (readonly)
- Kw
-
the ensure keyword that began this node
4281 4282 4283 |
# File 'lib/syntax_tree/node.rb', line 4281 def keyword @keyword end |
#statements ⇒ Object (readonly)
- Statements
-
the expressions to be executed
4284 4285 4286 |
# File 'lib/syntax_tree/node.rb', line 4284 def statements @statements end |
Instance Method Details
#accept(visitor) ⇒ Object
4296 4297 4298 |
# File 'lib/syntax_tree/node.rb', line 4296 def accept(visitor) visitor.visit_ensure(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
4300 4301 4302 |
# File 'lib/syntax_tree/node.rb', line 4300 def child_nodes [keyword, statements] end |
#deconstruct_keys(_keys) ⇒ Object
4306 4307 4308 4309 4310 4311 4312 4313 |
# File 'lib/syntax_tree/node.rb', line 4306 def deconstruct_keys(_keys) { keyword: keyword, statements: statements, location: location, comments: comments } end |
#format(q) ⇒ Object
4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 |
# File 'lib/syntax_tree/node.rb', line 4315 def format(q) q.format(keyword) unless statements.empty? q.indent do q.breakable(force: true) q.format(statements) end end end |