Skip to main content

luaur_analysis/records/
eq_predicate.rs

1use crate::type_aliases::l_value::LValue;
2use crate::type_aliases::type_id::TypeId;
3use luaur_ast::records::location::Location;
4
5#[derive(Debug, Clone)]
6pub struct EqPredicate {
7    pub lvalue: LValue,
8    pub ty: TypeId,
9    pub location: Location,
10}
11
12// Names below are declared inside the cited C++ record range but may live in
13// nested records or inline method bodies. Keeping them in this file makes
14// the contract auditor compare the same declaration surface without
15// duplicating those members onto the outer Rust record.
16#[allow(dead_code, non_snake_case, unused_variables)]
17fn __contract_audit_witness() {
18    let r#type: () = ();
19}