forked from M-Labs/nac3
fix typo of primitives method
This commit is contained in:
parent
8452579c67
commit
d052f007fb
|
@ -327,7 +327,7 @@ pub fn impl_eq(unifier: &mut Unifier, store: &PrimitiveStore, ty: Type) {
|
|||
} else { unreachable!() }
|
||||
}
|
||||
|
||||
pub fn set_primirives_magic_methods(store: &PrimitiveStore, unifier: &mut Unifier) {
|
||||
pub fn set_primitives_magic_methods(store: &PrimitiveStore, unifier: &mut Unifier) {
|
||||
let PrimitiveStore {
|
||||
int32: int32_t,
|
||||
int64: int64_t,
|
||||
|
|
|
@ -82,7 +82,7 @@ impl TestEnvironment {
|
|||
// identifier_mapping.insert("None".into(), none);
|
||||
let primitives = PrimitiveStore { int32, int64, float, bool, none };
|
||||
|
||||
set_primirives_magic_methods(&primitives, &mut unifier);
|
||||
set_primitives_magic_methods(&primitives, &mut unifier);
|
||||
|
||||
let id_to_name = [
|
||||
(0, "int32".to_string()),
|
||||
|
|
Loading…
Reference in New Issue