CodeQL library for Java/Kotlin
codeql/java-all 7.8.0 (changelog, source)
Search

Class ExitSuccessor

An exit control flow successor.

Example:

int M(string s)
{
    if (s == null)
        System.Environment.Exit(0);
    return s.Length;
}

The callable exit node of M is an exit successor of the node on line 4.

Import path

import codeql.controlflow.SuccessorType

Direct supertypes

Indirect supertypes

Predicates

toString

Gets a textual representation of this successor type.