Class: SyntaxTree::Break
Overview
Break represents using the break keyword.
break
It can also optionally accept arguments, as in:
break 1
Instance Attribute Summary collapse
-
#arguments ⇒ Object
readonly
- Args
-
the arguments being sent to the keyword.
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(arguments:, location:, comments: []) ⇒ Break
constructor
A new instance of Break.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(arguments:, location:, comments: []) ⇒ Break
Returns a new instance of Break.
2278 2279 2280 2281 2282 |
# File 'lib/syntax_tree/node.rb', line 2278 def initialize(arguments:, location:, comments: []) @arguments = arguments @location = location @comments = comments end |
Instance Attribute Details
#arguments ⇒ Object (readonly)
- Args
-
the arguments being sent to the keyword
2273 2274 2275 |
# File 'lib/syntax_tree/node.rb', line 2273 def arguments @arguments end |
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
2276 2277 2278 |
# File 'lib/syntax_tree/node.rb', line 2276 def comments @comments end |
Instance Method Details
#accept(visitor) ⇒ Object
2284 2285 2286 |
# File 'lib/syntax_tree/node.rb', line 2284 def accept(visitor) visitor.visit_break(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
2288 2289 2290 |
# File 'lib/syntax_tree/node.rb', line 2288 def child_nodes [arguments] end |
#deconstruct_keys(_keys) ⇒ Object
2294 2295 2296 |
# File 'lib/syntax_tree/node.rb', line 2294 def deconstruct_keys(_keys) { arguments: arguments, location: location, comments: comments } end |
#format(q) ⇒ Object
2298 2299 2300 |
# File 'lib/syntax_tree/node.rb', line 2298 def format(q) FlowControlFormatter.new("break", self).format(q) end |