1use crate::enums::type_context::TypeContext; 2 3pub fn in_conditional(context: TypeContext) -> bool { 4 context == TypeContext::Condition 5}