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

Module Impl

INTERNAL: This module contains the customizable definition of ReturnExpr and should not be referenced directly.

Import path

import codeql.rust.elements.internal.ReturnExprImpl

Classes

ReturnExpr

A return expression. For example: rust fn some_value() -> i32 { return 42; } rust fn no_value() -> () { return; }