luaur-analysis 0.1.0

Luau type checker and type inference (Rust).
Documentation
1
2
3
4
5
6
use crate::records::identifier::Identifier;

#[allow(non_snake_case)]
pub fn operator_eq(lhs: &Identifier, rhs: &Identifier) -> bool {
    lhs.name() == rhs.name() && lhs.ctx() == rhs.ctx()
}