1use crate::type_aliases::l_value::LValue; 2use luaur_ast::records::location::Location; 3 4#[derive(Debug, Clone)] 5pub struct TruthyPredicate { 6 pub lvalue: LValue, 7 pub location: Location, 8}