luaur_analysis/records/
incomplete_inference.rs1use crate::type_aliases::type_id::TypeId;
2use luaur_ast::records::ast_expr::AstExpr;
3
4#[allow(non_camel_case_types)]
5#[derive(Debug, Clone)]
6pub struct IncompleteInference {
7 pub(crate) expectedType: TypeId,
8 pub(crate) targetType: TypeId,
9 pub(crate) expr: *const AstExpr,
10}