Class: RuboCop::Cop::VariableForce::Branch::Ensure Private
- Includes:
- ExceptionHandler
- Defined in:
- lib/rubocop/cop/variable_force/branch.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
begin
main_body
ensure
ensure_body
end
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
- #always_run? ⇒ Boolean private
Methods included from ExceptionHandler
#may_jump_to_other_branch?, #may_run_incompletely?
Methods inherited from Base
#==, #branched?, classes, #control_node, define_predicate, #each_ancestor, #exclusive_with?, #hash, inherited, #may_jump_to_other_branch?, #may_run_incompletely?, #parent, type
Instance Method Details
#always_run? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
320 321 322 |
# File 'lib/rubocop/cop/variable_force/branch.rb', line 320 def always_run? ensure_body? end |