forked from M-Labs/nac3
handle class fields and methods
This commit is contained in:
parent
40b062ce0f
commit
364054331c
|
@ -83,7 +83,7 @@ pub fn parse_type_annotation<T>(
|
||||||
// it could be a type variable
|
// it could be a type variable
|
||||||
let ty = resolver
|
let ty = resolver
|
||||||
.get_symbol_type(unifier, primitives, x)
|
.get_symbol_type(unifier, primitives, x)
|
||||||
.ok_or_else(|| "Cannot use function name as type".to_owned())?;
|
.ok_or_else(|| "unknown type variable name".to_owned())?;
|
||||||
if let TypeEnum::TVar { .. } = &*unifier.get_ty(ty) {
|
if let TypeEnum::TVar { .. } = &*unifier.get_ty(ty) {
|
||||||
Ok(ty)
|
Ok(ty)
|
||||||
} else {
|
} else {
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue