2019-11-12 06:09:25 -06:00
|
|
|
//! This module describes hir-level representation of expressions.
|
|
|
|
//!
|
2021-01-08 08:46:48 -06:00
|
|
|
//! This representation is:
|
2019-11-12 06:09:25 -06:00
|
|
|
//!
|
|
|
|
//! 1. Identity-based. Each expression has an `id`, so we can distinguish
|
|
|
|
//! between different `1` in `1 + 1`.
|
|
|
|
//! 2. Independent of syntax. Though syntactic provenance information can be
|
|
|
|
//! attached separately via id-based side map.
|
|
|
|
//! 3. Unresolved. Paths are stored as sequences of names, and not as defs the
|
|
|
|
//! names refer to.
|
|
|
|
//! 4. Desugared. There's no `if let`.
|
2019-11-12 09:53:26 -06:00
|
|
|
//!
|
|
|
|
//! See also a neighboring `body` module.
|
2019-11-12 06:09:25 -06:00
|
|
|
|
2023-09-05 12:06:15 -05:00
|
|
|
pub mod format_args;
|
2024-01-26 13:08:10 -06:00
|
|
|
pub mod type_ref;
|
2023-04-06 12:36:25 -05:00
|
|
|
|
2022-08-15 06:51:45 -05:00
|
|
|
use std::fmt;
|
|
|
|
|
2019-11-12 06:09:25 -06:00
|
|
|
use hir_expand::name::Name;
|
2023-01-09 12:29:28 -06:00
|
|
|
use intern::Interned;
|
2022-07-17 10:22:11 -05:00
|
|
|
use la_arena::{Idx, RawIdx};
|
2023-02-18 14:32:55 -06:00
|
|
|
use smallvec::SmallVec;
|
2023-04-07 02:34:04 -05:00
|
|
|
use syntax::ast;
|
2019-11-12 06:09:25 -06:00
|
|
|
|
|
|
|
use crate::{
|
2021-02-27 18:20:04 -06:00
|
|
|
builtin_type::{BuiltinFloat, BuiltinInt, BuiltinUint},
|
2019-11-12 06:09:25 -06:00
|
|
|
path::{GenericArgs, Path},
|
2020-05-28 14:42:22 -05:00
|
|
|
type_ref::{Mutability, Rawness, TypeRef},
|
2023-06-11 16:07:11 -05:00
|
|
|
BlockId, ConstBlockId,
|
2019-11-12 06:09:25 -06:00
|
|
|
};
|
|
|
|
|
2021-08-14 09:07:51 -05:00
|
|
|
pub use syntax::ast::{ArithOp, BinaryOp, CmpOp, LogicOp, Ordering, RangeOp, UnaryOp};
|
|
|
|
|
2023-02-18 14:32:55 -06:00
|
|
|
pub type BindingId = Idx<Binding>;
|
|
|
|
|
2023-04-06 12:36:25 -05:00
|
|
|
pub type ExprId = Idx<Expr>;
|
|
|
|
|
2022-07-17 10:22:11 -05:00
|
|
|
/// FIXME: this is a hacky function which should be removed
|
|
|
|
pub(crate) fn dummy_expr_id() -> ExprId {
|
|
|
|
ExprId::from_raw(RawIdx::from(u32::MAX))
|
|
|
|
}
|
|
|
|
|
2020-03-19 10:00:11 -05:00
|
|
|
pub type PatId = Idx<Pat>;
|
2019-11-12 06:09:25 -06:00
|
|
|
|
2023-01-01 06:24:48 -06:00
|
|
|
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
|
|
|
|
pub enum ExprOrPatId {
|
|
|
|
ExprId(ExprId),
|
|
|
|
PatId(PatId),
|
|
|
|
}
|
|
|
|
stdx::impl_from!(ExprId, PatId for ExprOrPatId);
|
|
|
|
|
2020-12-23 09:34:30 -06:00
|
|
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
|
|
|
pub struct Label {
|
|
|
|
pub name: Name,
|
|
|
|
}
|
|
|
|
pub type LabelId = Idx<Label>;
|
|
|
|
|
2022-05-26 05:35:25 -05:00
|
|
|
// We convert float values into bits and that's how we don't need to deal with f32 and f64.
|
|
|
|
// For PartialEq, bits comparison should work, as ordering is not important
|
|
|
|
// https://github.com/rust-lang/rust-analyzer/issues/12380#issuecomment-1137284360
|
2023-02-03 05:16:25 -06:00
|
|
|
#[derive(Default, Debug, Clone, Copy, Eq, PartialEq)]
|
2022-05-26 05:35:25 -05:00
|
|
|
pub struct FloatTypeWrapper(u64);
|
|
|
|
|
|
|
|
impl FloatTypeWrapper {
|
|
|
|
pub fn new(value: f64) -> Self {
|
|
|
|
Self(value.to_bits())
|
|
|
|
}
|
2023-02-03 05:16:25 -06:00
|
|
|
|
|
|
|
pub fn into_f64(self) -> f64 {
|
|
|
|
f64::from_bits(self.0)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn into_f32(self) -> f32 {
|
|
|
|
f64::from_bits(self.0) as f32
|
|
|
|
}
|
2022-05-26 05:35:25 -05:00
|
|
|
}
|
|
|
|
|
2022-08-15 06:51:45 -05:00
|
|
|
impl fmt::Display for FloatTypeWrapper {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2022-05-30 23:43:03 -05:00
|
|
|
write!(f, "{:?}", f64::from_bits(self.0))
|
2022-05-26 05:35:25 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-12 06:09:25 -06:00
|
|
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
|
|
|
pub enum Literal {
|
2021-11-20 09:37:41 -06:00
|
|
|
String(Box<str>),
|
2021-11-20 09:17:16 -06:00
|
|
|
ByteString(Box<[u8]>),
|
2023-07-18 05:42:02 -05:00
|
|
|
CString(Box<[u8]>),
|
2019-11-12 06:09:25 -06:00
|
|
|
Char(char),
|
|
|
|
Bool(bool),
|
2021-05-12 07:59:35 -05:00
|
|
|
Int(i128, Option<BuiltinInt>),
|
|
|
|
Uint(u128, Option<BuiltinUint>),
|
2022-05-26 05:35:25 -05:00
|
|
|
// Here we are using a wrapper around float because f32 and f64 do not implement Eq, so they
|
|
|
|
// could not be used directly here, to understand how the wrapper works go to definition of
|
|
|
|
// FloatTypeWrapper
|
|
|
|
Float(FloatTypeWrapper, Option<BuiltinFloat>),
|
2019-11-12 06:09:25 -06:00
|
|
|
}
|
|
|
|
|
2023-05-25 16:15:37 -05:00
|
|
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
|
|
|
/// Used in range patterns.
|
|
|
|
pub enum LiteralOrConst {
|
|
|
|
Literal(Literal),
|
2024-03-05 05:29:49 -06:00
|
|
|
Const(PatId),
|
2023-05-25 16:15:37 -05:00
|
|
|
}
|
|
|
|
|
2023-03-14 14:31:46 -05:00
|
|
|
impl Literal {
|
|
|
|
pub fn negate(self) -> Option<Self> {
|
|
|
|
if let Literal::Int(i, k) = self {
|
|
|
|
Some(Literal::Int(-i, k))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-07 02:34:04 -05:00
|
|
|
impl From<ast::LiteralKind> for Literal {
|
|
|
|
fn from(ast_lit_kind: ast::LiteralKind) -> Self {
|
|
|
|
use ast::LiteralKind;
|
|
|
|
match ast_lit_kind {
|
|
|
|
LiteralKind::IntNumber(lit) => {
|
|
|
|
if let builtin @ Some(_) = lit.suffix().and_then(BuiltinFloat::from_suffix) {
|
|
|
|
Literal::Float(
|
|
|
|
FloatTypeWrapper::new(lit.float_value().unwrap_or(Default::default())),
|
|
|
|
builtin,
|
|
|
|
)
|
|
|
|
} else if let builtin @ Some(_) = lit.suffix().and_then(BuiltinUint::from_suffix) {
|
|
|
|
Literal::Uint(lit.value().unwrap_or(0), builtin)
|
|
|
|
} else {
|
|
|
|
let builtin = lit.suffix().and_then(BuiltinInt::from_suffix);
|
|
|
|
Literal::Int(lit.value().unwrap_or(0) as i128, builtin)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LiteralKind::FloatNumber(lit) => {
|
|
|
|
let ty = lit.suffix().and_then(BuiltinFloat::from_suffix);
|
|
|
|
Literal::Float(FloatTypeWrapper::new(lit.value().unwrap_or(Default::default())), ty)
|
|
|
|
}
|
|
|
|
LiteralKind::ByteString(bs) => {
|
|
|
|
let text = bs.value().map(Box::from).unwrap_or_else(Default::default);
|
|
|
|
Literal::ByteString(text)
|
|
|
|
}
|
|
|
|
LiteralKind::String(s) => {
|
|
|
|
let text = s.value().map(Box::from).unwrap_or_else(Default::default);
|
|
|
|
Literal::String(text)
|
|
|
|
}
|
2023-05-18 04:06:05 -05:00
|
|
|
LiteralKind::CString(s) => {
|
|
|
|
let text = s.value().map(Box::from).unwrap_or_else(Default::default);
|
|
|
|
Literal::CString(text)
|
|
|
|
}
|
2023-04-07 02:34:04 -05:00
|
|
|
LiteralKind::Byte(b) => {
|
|
|
|
Literal::Uint(b.value().unwrap_or_default() as u128, Some(BuiltinUint::U8))
|
|
|
|
}
|
|
|
|
LiteralKind::Char(c) => Literal::Char(c.value().unwrap_or_default()),
|
|
|
|
LiteralKind::Bool(val) => Literal::Bool(val),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-12 06:09:25 -06:00
|
|
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
|
|
|
pub enum Expr {
|
2020-02-21 09:56:34 -06:00
|
|
|
/// This is produced if the syntax tree does not have a required expression piece.
|
2019-11-12 06:09:25 -06:00
|
|
|
Missing,
|
|
|
|
Path(Path),
|
|
|
|
If {
|
|
|
|
condition: ExprId,
|
|
|
|
then_branch: ExprId,
|
|
|
|
else_branch: Option<ExprId>,
|
|
|
|
},
|
2022-01-22 21:39:26 -06:00
|
|
|
Let {
|
|
|
|
pat: PatId,
|
|
|
|
expr: ExprId,
|
|
|
|
},
|
2019-11-12 06:09:25 -06:00
|
|
|
Block {
|
2023-03-25 14:44:12 -05:00
|
|
|
id: Option<BlockId>,
|
2021-11-20 09:00:45 -06:00
|
|
|
statements: Box<[Statement]>,
|
2019-11-12 06:09:25 -06:00
|
|
|
tail: Option<ExprId>,
|
2020-12-23 09:34:30 -06:00
|
|
|
label: Option<LabelId>,
|
2019-11-12 06:09:25 -06:00
|
|
|
},
|
2023-03-04 07:45:57 -06:00
|
|
|
Async {
|
2023-03-25 14:44:12 -05:00
|
|
|
id: Option<BlockId>,
|
2023-03-04 07:45:57 -06:00
|
|
|
statements: Box<[Statement]>,
|
|
|
|
tail: Option<ExprId>,
|
|
|
|
},
|
2023-06-11 16:07:11 -05:00
|
|
|
Const(ConstBlockId),
|
2024-02-16 03:54:54 -06:00
|
|
|
// FIXME: Fold this into Block with an unsafe flag?
|
2023-03-04 07:45:57 -06:00
|
|
|
Unsafe {
|
2023-03-25 14:44:12 -05:00
|
|
|
id: Option<BlockId>,
|
2023-03-04 07:45:57 -06:00
|
|
|
statements: Box<[Statement]>,
|
|
|
|
tail: Option<ExprId>,
|
|
|
|
},
|
2019-11-12 06:09:25 -06:00
|
|
|
Loop {
|
|
|
|
body: ExprId,
|
2020-12-23 09:34:30 -06:00
|
|
|
label: Option<LabelId>,
|
2019-11-12 06:09:25 -06:00
|
|
|
},
|
|
|
|
Call {
|
|
|
|
callee: ExprId,
|
2021-11-20 09:00:45 -06:00
|
|
|
args: Box<[ExprId]>,
|
2022-07-24 08:32:49 -05:00
|
|
|
is_assignee_expr: bool,
|
2019-11-12 06:09:25 -06:00
|
|
|
},
|
|
|
|
MethodCall {
|
|
|
|
receiver: ExprId,
|
|
|
|
method_name: Name,
|
2021-11-20 09:00:45 -06:00
|
|
|
args: Box<[ExprId]>,
|
2021-03-30 15:06:57 -05:00
|
|
|
generic_args: Option<Box<GenericArgs>>,
|
2019-11-12 06:09:25 -06:00
|
|
|
},
|
|
|
|
Match {
|
|
|
|
expr: ExprId,
|
2021-11-20 09:00:45 -06:00
|
|
|
arms: Box<[MatchArm]>,
|
2019-11-12 06:09:25 -06:00
|
|
|
},
|
2020-05-31 03:59:40 -05:00
|
|
|
Continue {
|
2023-04-06 05:50:16 -05:00
|
|
|
label: Option<LabelId>,
|
2020-05-31 03:59:40 -05:00
|
|
|
},
|
2019-11-12 06:09:25 -06:00
|
|
|
Break {
|
|
|
|
expr: Option<ExprId>,
|
2023-04-06 05:50:16 -05:00
|
|
|
label: Option<LabelId>,
|
2019-11-12 06:09:25 -06:00
|
|
|
},
|
|
|
|
Return {
|
|
|
|
expr: Option<ExprId>,
|
|
|
|
},
|
2023-06-07 11:30:31 -05:00
|
|
|
Become {
|
|
|
|
expr: ExprId,
|
|
|
|
},
|
2021-01-13 09:01:50 -06:00
|
|
|
Yield {
|
|
|
|
expr: Option<ExprId>,
|
|
|
|
},
|
2022-12-28 17:17:13 -06:00
|
|
|
Yeet {
|
|
|
|
expr: Option<ExprId>,
|
|
|
|
},
|
2019-11-12 06:09:25 -06:00
|
|
|
RecordLit {
|
2021-03-30 15:06:57 -05:00
|
|
|
path: Option<Box<Path>>,
|
2021-11-20 09:00:45 -06:00
|
|
|
fields: Box<[RecordLitField]>,
|
2019-11-12 06:09:25 -06:00
|
|
|
spread: Option<ExprId>,
|
2022-07-22 04:12:21 -05:00
|
|
|
ellipsis: bool,
|
2022-07-24 08:32:49 -05:00
|
|
|
is_assignee_expr: bool,
|
2019-11-12 06:09:25 -06:00
|
|
|
},
|
|
|
|
Field {
|
|
|
|
expr: ExprId,
|
|
|
|
name: Name,
|
|
|
|
},
|
|
|
|
Await {
|
|
|
|
expr: ExprId,
|
|
|
|
},
|
|
|
|
Cast {
|
|
|
|
expr: ExprId,
|
2021-04-06 09:07:45 -05:00
|
|
|
type_ref: Interned<TypeRef>,
|
2019-11-12 06:09:25 -06:00
|
|
|
},
|
|
|
|
Ref {
|
|
|
|
expr: ExprId,
|
2020-05-28 14:42:22 -05:00
|
|
|
rawness: Rawness,
|
2019-11-12 06:09:25 -06:00
|
|
|
mutability: Mutability,
|
|
|
|
},
|
|
|
|
Box {
|
|
|
|
expr: ExprId,
|
|
|
|
},
|
|
|
|
UnaryOp {
|
|
|
|
expr: ExprId,
|
|
|
|
op: UnaryOp,
|
|
|
|
},
|
|
|
|
BinaryOp {
|
|
|
|
lhs: ExprId,
|
|
|
|
rhs: ExprId,
|
|
|
|
op: Option<BinaryOp>,
|
|
|
|
},
|
2019-11-28 13:10:16 -06:00
|
|
|
Range {
|
2019-11-29 00:49:12 -06:00
|
|
|
lhs: Option<ExprId>,
|
|
|
|
rhs: Option<ExprId>,
|
|
|
|
range_type: RangeOp,
|
2019-11-28 13:10:16 -06:00
|
|
|
},
|
2019-11-12 06:09:25 -06:00
|
|
|
Index {
|
|
|
|
base: ExprId,
|
|
|
|
index: ExprId,
|
2023-12-11 02:26:27 -06:00
|
|
|
is_assignee_expr: bool,
|
2019-11-12 06:09:25 -06:00
|
|
|
},
|
2022-05-20 08:40:32 -05:00
|
|
|
Closure {
|
2021-11-20 09:00:45 -06:00
|
|
|
args: Box<[PatId]>,
|
|
|
|
arg_types: Box<[Option<Interned<TypeRef>>]>,
|
2021-04-06 09:07:45 -05:00
|
|
|
ret_type: Option<Interned<TypeRef>>,
|
2019-11-12 06:09:25 -06:00
|
|
|
body: ExprId,
|
2022-09-05 08:43:26 -05:00
|
|
|
closure_kind: ClosureKind,
|
2023-04-06 07:44:38 -05:00
|
|
|
capture_by: CaptureBy,
|
2019-11-12 06:09:25 -06:00
|
|
|
},
|
|
|
|
Tuple {
|
2021-11-20 09:00:45 -06:00
|
|
|
exprs: Box<[ExprId]>,
|
2022-07-24 08:32:49 -05:00
|
|
|
is_assignee_expr: bool,
|
2019-11-12 06:09:25 -06:00
|
|
|
},
|
|
|
|
Array(Array),
|
|
|
|
Literal(Literal),
|
2022-05-26 12:14:06 -05:00
|
|
|
Underscore,
|
2023-09-05 05:13:24 -05:00
|
|
|
OffsetOf(OffsetOf),
|
2023-09-05 06:28:41 -05:00
|
|
|
InlineAsm(InlineAsm),
|
2023-09-05 05:13:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
|
|
pub struct OffsetOf {
|
|
|
|
pub container: Interned<TypeRef>,
|
|
|
|
pub fields: Box<[Name]>,
|
2019-11-12 06:09:25 -06:00
|
|
|
}
|
|
|
|
|
2023-09-05 06:28:41 -05:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
|
|
pub struct InlineAsm {
|
|
|
|
pub e: ExprId,
|
|
|
|
}
|
|
|
|
|
2022-09-05 08:43:26 -05:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
|
|
|
pub enum ClosureKind {
|
|
|
|
Closure,
|
2023-12-25 16:12:45 -06:00
|
|
|
Coroutine(Movability),
|
2022-08-06 21:11:02 -05:00
|
|
|
Async,
|
2022-09-05 08:43:26 -05:00
|
|
|
}
|
|
|
|
|
2023-04-06 07:44:38 -05:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
|
|
|
pub enum CaptureBy {
|
|
|
|
/// `move |x| y + x`.
|
|
|
|
Value,
|
|
|
|
/// `move` keyword was not specified.
|
|
|
|
Ref,
|
|
|
|
}
|
|
|
|
|
2022-09-05 08:43:26 -05:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
|
|
|
pub enum Movability {
|
|
|
|
Static,
|
|
|
|
Movable,
|
|
|
|
}
|
|
|
|
|
2019-11-12 06:09:25 -06:00
|
|
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
|
|
|
pub enum Array {
|
2022-07-24 08:32:49 -05:00
|
|
|
ElementList { elements: Box<[ExprId]>, is_assignee_expr: bool },
|
2019-11-12 06:09:25 -06:00
|
|
|
Repeat { initializer: ExprId, repeat: ExprId },
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
|
|
|
pub struct MatchArm {
|
2020-02-09 12:57:01 -06:00
|
|
|
pub pat: PatId,
|
2022-01-22 21:39:26 -06:00
|
|
|
pub guard: Option<ExprId>,
|
2019-11-12 06:09:25 -06:00
|
|
|
pub expr: ExprId,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
|
|
|
pub struct RecordLitField {
|
|
|
|
pub name: Name,
|
|
|
|
pub expr: ExprId,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
|
|
|
pub enum Statement {
|
2021-10-07 10:05:50 -05:00
|
|
|
Let {
|
|
|
|
pat: PatId,
|
|
|
|
type_ref: Option<Interned<TypeRef>>,
|
|
|
|
initializer: Option<ExprId>,
|
|
|
|
else_branch: Option<ExprId>,
|
|
|
|
},
|
|
|
|
Expr {
|
|
|
|
expr: ExprId,
|
|
|
|
has_semi: bool,
|
|
|
|
},
|
2024-02-15 11:00:40 -06:00
|
|
|
// At the moment, we only use this to figure out if a return expression
|
|
|
|
// is really the last statement of a block. See #16566
|
|
|
|
Item,
|
2019-11-12 06:09:25 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Expr {
|
|
|
|
pub fn walk_child_exprs(&self, mut f: impl FnMut(ExprId)) {
|
|
|
|
match self {
|
|
|
|
Expr::Missing => {}
|
2023-09-05 05:13:24 -05:00
|
|
|
Expr::Path(_) | Expr::OffsetOf(_) => {}
|
2023-09-05 12:06:15 -05:00
|
|
|
Expr::InlineAsm(it) => f(it.e),
|
2019-11-12 06:09:25 -06:00
|
|
|
Expr::If { condition, then_branch, else_branch } => {
|
|
|
|
f(*condition);
|
|
|
|
f(*then_branch);
|
2021-11-20 09:17:16 -06:00
|
|
|
if let &Some(else_branch) = else_branch {
|
|
|
|
f(else_branch);
|
2019-11-12 06:09:25 -06:00
|
|
|
}
|
|
|
|
}
|
2022-01-22 21:39:26 -06:00
|
|
|
Expr::Let { expr, .. } => {
|
|
|
|
f(*expr);
|
|
|
|
}
|
2023-05-12 09:47:15 -05:00
|
|
|
Expr::Const(_) => (),
|
2023-03-04 07:45:57 -06:00
|
|
|
Expr::Block { statements, tail, .. }
|
|
|
|
| Expr::Unsafe { statements, tail, .. }
|
2023-05-12 09:47:15 -05:00
|
|
|
| Expr::Async { statements, tail, .. } => {
|
2021-11-20 09:00:45 -06:00
|
|
|
for stmt in statements.iter() {
|
2019-11-12 06:09:25 -06:00
|
|
|
match stmt {
|
2023-03-04 07:45:57 -06:00
|
|
|
Statement::Let { initializer, else_branch, .. } => {
|
2021-11-20 09:17:16 -06:00
|
|
|
if let &Some(expr) = initializer {
|
|
|
|
f(expr);
|
2019-11-12 06:09:25 -06:00
|
|
|
}
|
2023-03-04 07:45:57 -06:00
|
|
|
if let &Some(expr) = else_branch {
|
|
|
|
f(expr);
|
|
|
|
}
|
2019-11-12 06:09:25 -06:00
|
|
|
}
|
2021-04-07 06:45:17 -05:00
|
|
|
Statement::Expr { expr: expression, .. } => f(*expression),
|
2024-02-15 11:00:40 -06:00
|
|
|
Statement::Item => (),
|
2019-11-12 06:09:25 -06:00
|
|
|
}
|
|
|
|
}
|
2021-11-20 09:17:16 -06:00
|
|
|
if let &Some(expr) = tail {
|
|
|
|
f(expr);
|
2019-11-12 06:09:25 -06:00
|
|
|
}
|
|
|
|
}
|
2020-05-31 03:59:40 -05:00
|
|
|
Expr::Loop { body, .. } => f(*body),
|
2022-07-24 08:32:49 -05:00
|
|
|
Expr::Call { callee, args, .. } => {
|
2019-11-12 06:09:25 -06:00
|
|
|
f(*callee);
|
2021-11-20 09:17:16 -06:00
|
|
|
args.iter().copied().for_each(f);
|
2019-11-12 06:09:25 -06:00
|
|
|
}
|
|
|
|
Expr::MethodCall { receiver, args, .. } => {
|
|
|
|
f(*receiver);
|
2021-11-20 09:17:16 -06:00
|
|
|
args.iter().copied().for_each(f);
|
2019-11-12 06:09:25 -06:00
|
|
|
}
|
|
|
|
Expr::Match { expr, arms } => {
|
|
|
|
f(*expr);
|
2021-11-20 09:17:16 -06:00
|
|
|
arms.iter().map(|arm| arm.expr).for_each(f);
|
2019-11-12 06:09:25 -06:00
|
|
|
}
|
2020-05-31 05:06:22 -05:00
|
|
|
Expr::Continue { .. } => {}
|
2022-12-28 17:17:13 -06:00
|
|
|
Expr::Break { expr, .. }
|
|
|
|
| Expr::Return { expr }
|
|
|
|
| Expr::Yield { expr }
|
|
|
|
| Expr::Yeet { expr } => {
|
2021-11-20 09:17:16 -06:00
|
|
|
if let &Some(expr) = expr {
|
|
|
|
f(expr);
|
2019-11-12 06:09:25 -06:00
|
|
|
}
|
|
|
|
}
|
2023-06-07 11:30:31 -05:00
|
|
|
Expr::Become { expr } => f(*expr),
|
2019-11-12 06:09:25 -06:00
|
|
|
Expr::RecordLit { fields, spread, .. } => {
|
2021-11-20 09:00:45 -06:00
|
|
|
for field in fields.iter() {
|
2019-11-12 06:09:25 -06:00
|
|
|
f(field.expr);
|
|
|
|
}
|
2021-11-20 09:17:16 -06:00
|
|
|
if let &Some(expr) = spread {
|
|
|
|
f(expr);
|
2019-11-12 06:09:25 -06:00
|
|
|
}
|
|
|
|
}
|
2022-05-20 08:40:32 -05:00
|
|
|
Expr::Closure { body, .. } => {
|
2019-11-12 06:09:25 -06:00
|
|
|
f(*body);
|
|
|
|
}
|
2019-11-29 00:49:12 -06:00
|
|
|
Expr::BinaryOp { lhs, rhs, .. } => {
|
2019-11-12 06:09:25 -06:00
|
|
|
f(*lhs);
|
|
|
|
f(*rhs);
|
|
|
|
}
|
2019-11-29 00:49:12 -06:00
|
|
|
Expr::Range { lhs, rhs, .. } => {
|
2021-11-20 09:17:16 -06:00
|
|
|
if let &Some(lhs) = rhs {
|
|
|
|
f(lhs);
|
2019-11-29 00:49:12 -06:00
|
|
|
}
|
2021-11-20 09:17:16 -06:00
|
|
|
if let &Some(rhs) = lhs {
|
|
|
|
f(rhs);
|
2019-11-29 00:49:12 -06:00
|
|
|
}
|
|
|
|
}
|
2023-12-11 02:26:27 -06:00
|
|
|
Expr::Index { base, index, .. } => {
|
2019-11-12 06:09:25 -06:00
|
|
|
f(*base);
|
|
|
|
f(*index);
|
|
|
|
}
|
2019-11-29 00:49:12 -06:00
|
|
|
Expr::Field { expr, .. }
|
2019-11-12 06:09:25 -06:00
|
|
|
| Expr::Await { expr }
|
|
|
|
| Expr::Cast { expr, .. }
|
|
|
|
| Expr::Ref { expr, .. }
|
|
|
|
| Expr::UnaryOp { expr, .. }
|
|
|
|
| Expr::Box { expr } => {
|
|
|
|
f(*expr);
|
|
|
|
}
|
2022-07-24 08:32:49 -05:00
|
|
|
Expr::Tuple { exprs, .. } => exprs.iter().copied().for_each(f),
|
2019-11-12 06:09:25 -06:00
|
|
|
Expr::Array(a) => match a {
|
2022-07-24 08:32:49 -05:00
|
|
|
Array::ElementList { elements, .. } => elements.iter().copied().for_each(f),
|
2019-11-12 06:09:25 -06:00
|
|
|
Array::Repeat { initializer, repeat } => {
|
|
|
|
f(*initializer);
|
|
|
|
f(*repeat)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Expr::Literal(_) => {}
|
2022-05-26 12:14:06 -05:00
|
|
|
Expr::Underscore => {}
|
2019-11-12 06:09:25 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Explicit binding annotations given in the HIR for a binding. Note
|
|
|
|
/// that this is not the final binding *mode* that we infer after type
|
|
|
|
/// inference.
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Copy)]
|
|
|
|
pub enum BindingAnnotation {
|
|
|
|
/// No binding annotation given: this means that the final binding mode
|
|
|
|
/// will depend on whether we have skipped through a `&` reference
|
|
|
|
/// when matching. For example, the `x` in `Some(x)` will have binding
|
|
|
|
/// mode `None`; if you do `let Some(x) = &Some(22)`, it will
|
|
|
|
/// ultimately be inferred to be by-reference.
|
|
|
|
Unannotated,
|
|
|
|
|
|
|
|
/// Annotated with `mut x` -- could be either ref or not, similar to `None`.
|
|
|
|
Mutable,
|
|
|
|
|
|
|
|
/// Annotated as `ref`, like `ref x`
|
|
|
|
Ref,
|
|
|
|
|
|
|
|
/// Annotated as `ref mut x`.
|
|
|
|
RefMut,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl BindingAnnotation {
|
|
|
|
pub fn new(is_mutable: bool, is_ref: bool) -> Self {
|
|
|
|
match (is_mutable, is_ref) {
|
|
|
|
(true, true) => BindingAnnotation::RefMut,
|
|
|
|
(false, true) => BindingAnnotation::Ref,
|
|
|
|
(true, false) => BindingAnnotation::Mutable,
|
|
|
|
(false, false) => BindingAnnotation::Unannotated,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-04 04:09:36 -05:00
|
|
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
|
|
|
pub enum BindingProblems {
|
|
|
|
/// https://doc.rust-lang.org/stable/error_codes/E0416.html
|
|
|
|
BoundMoreThanOnce,
|
|
|
|
/// https://doc.rust-lang.org/stable/error_codes/E0409.html
|
|
|
|
BoundInconsistently,
|
|
|
|
/// https://doc.rust-lang.org/stable/error_codes/E0408.html
|
|
|
|
NotBoundAcrossAll,
|
|
|
|
}
|
|
|
|
|
2023-02-18 14:32:55 -06:00
|
|
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
|
|
|
pub struct Binding {
|
|
|
|
pub name: Name,
|
|
|
|
pub mode: BindingAnnotation,
|
|
|
|
pub definitions: SmallVec<[PatId; 1]>,
|
2023-06-04 04:09:36 -05:00
|
|
|
pub problems: Option<BindingProblems>,
|
2023-04-06 07:44:38 -05:00
|
|
|
}
|
|
|
|
|
2019-11-12 06:09:25 -06:00
|
|
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
|
|
|
pub struct RecordFieldPat {
|
|
|
|
pub name: Name,
|
|
|
|
pub pat: PatId,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Close relative to rustc's hir::PatKind
|
|
|
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
|
|
|
pub enum Pat {
|
|
|
|
Missing,
|
|
|
|
Wild,
|
2021-11-20 09:17:16 -06:00
|
|
|
Tuple { args: Box<[PatId]>, ellipsis: Option<usize> },
|
|
|
|
Or(Box<[PatId]>),
|
|
|
|
Record { path: Option<Box<Path>>, args: Box<[RecordFieldPat]>, ellipsis: bool },
|
2023-05-25 16:15:37 -05:00
|
|
|
Range { start: Option<Box<LiteralOrConst>>, end: Option<Box<LiteralOrConst>> },
|
2021-11-20 09:17:16 -06:00
|
|
|
Slice { prefix: Box<[PatId]>, slice: Option<PatId>, suffix: Box<[PatId]> },
|
2021-03-30 16:55:18 -05:00
|
|
|
Path(Box<Path>),
|
2019-11-12 06:09:25 -06:00
|
|
|
Lit(ExprId),
|
2023-02-18 14:32:55 -06:00
|
|
|
Bind { id: BindingId, subpat: Option<PatId> },
|
2021-11-20 09:17:16 -06:00
|
|
|
TupleStruct { path: Option<Box<Path>>, args: Box<[PatId]>, ellipsis: Option<usize> },
|
2020-04-08 22:23:51 -05:00
|
|
|
Ref { pat: PatId, mutability: Mutability },
|
2020-09-12 14:18:57 -05:00
|
|
|
Box { inner: PatId },
|
2020-12-23 05:15:38 -06:00
|
|
|
ConstBlock(ExprId),
|
2019-11-12 06:09:25 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Pat {
|
|
|
|
pub fn walk_child_pats(&self, mut f: impl FnMut(PatId)) {
|
|
|
|
match self {
|
2020-12-23 05:15:38 -06:00
|
|
|
Pat::Range { .. }
|
|
|
|
| Pat::Lit(..)
|
|
|
|
| Pat::Path(..)
|
|
|
|
| Pat::ConstBlock(..)
|
|
|
|
| Pat::Wild
|
|
|
|
| Pat::Missing => {}
|
2019-11-12 06:09:25 -06:00
|
|
|
Pat::Bind { subpat, .. } => {
|
|
|
|
subpat.iter().copied().for_each(f);
|
|
|
|
}
|
2020-04-12 10:40:09 -05:00
|
|
|
Pat::Or(args) | Pat::Tuple { args, .. } | Pat::TupleStruct { args, .. } => {
|
2019-11-12 06:09:25 -06:00
|
|
|
args.iter().copied().for_each(f);
|
|
|
|
}
|
|
|
|
Pat::Ref { pat, .. } => f(*pat),
|
2020-02-11 15:33:11 -06:00
|
|
|
Pat::Slice { prefix, slice, suffix } => {
|
|
|
|
let total_iter = prefix.iter().chain(slice.iter()).chain(suffix.iter());
|
2019-11-12 06:09:25 -06:00
|
|
|
total_iter.copied().for_each(f);
|
|
|
|
}
|
|
|
|
Pat::Record { args, .. } => {
|
|
|
|
args.iter().map(|f| f.pat).for_each(f);
|
|
|
|
}
|
2020-09-12 14:18:57 -05:00
|
|
|
Pat::Box { inner } => f(*inner),
|
2019-11-12 06:09:25 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|