CodeQL library for C#
codeql/csharp-all 0.8.12 (changelog, source)
Search

Class ControlFlow::SuccessorTypes::ContinueSuccessor

A continue control flow successor.

Example:

int M(int x)
{
    while (true) {
        if (x++ < 10)
            continue;
    }
    return x;
}

The node while (true) { ... } is a continue successor of the node continue;.

Import path

import csharp

Direct supertypes

Indirect supertypes

Predicates

toString

Gets a textual representation of successor type.