CodeQL library for Ruby
codeql/ruby-all 0.8.15-dev (changelog, source)
Search

Class SuccessorTypes::RetrySuccessor

A retry control flow successor.

Example:

Example:

def m
  begin
    puts "Retry"
    raise
  rescue
    retry
  end
end

The node puts "Retry" is retry successor of the node retry.

Import path

import codeql.ruby.CFG

Direct supertypes

Indirect supertypes

Predicates

toString

Gets a textual representation of successor type.