CodeQL library for Rust
codeql/rust-all 0.2.12 (changelog, source)
Search

Class Raw::ContinueExpr

INTERNAL: Do not use. A continue expression. For example:

loop {
    if not_ready() {
        continue;
    }
}
'label: loop {
    if not_ready() {
        continue 'label;
    }
}

Import path

import codeql.rust.elements.internal.generated.Raw

Direct supertypes

Indirect supertypes

Predicates

getAttr

Gets the indexth attr of this continue expression (0-based).

getLifetime

Gets the lifetime of this continue expression, if it exists.

getNumberOfAttrs

Gets the number of attrs of this continue expression.

toString