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.RawDirect supertypes
Predicates
| getAttr | Gets the |
| getLifetime | Gets the lifetime of this continue expression, if it exists. |
| getNumberOfAttrs | Gets the number of attrs of this continue expression. |
| toString |