2021-08-31 15:22:45 +08:00
|
|
|
use crate::{
|
2021-10-06 16:07:42 +08:00
|
|
|
codegen::CodeGenContext,
|
2021-08-31 15:22:45 +08:00
|
|
|
location::Location,
|
2021-10-06 16:07:42 +08:00
|
|
|
symbol_resolver::SymbolResolver,
|
2021-08-31 15:22:45 +08:00
|
|
|
toplevel::DefinitionId,
|
|
|
|
typecheck::{
|
|
|
|
type_inferencer::PrimitiveStore,
|
|
|
|
typedef::{Type, Unifier},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
use indoc::indoc;
|
2021-09-07 00:20:40 +08:00
|
|
|
use parking_lot::Mutex;
|
2021-09-17 01:47:54 +08:00
|
|
|
use rustpython_parser::{ast::fold::Fold, parser::parse_program};
|
2021-09-07 00:20:40 +08:00
|
|
|
use std::{collections::HashMap, sync::Arc};
|
2021-08-31 15:22:45 +08:00
|
|
|
use test_case::test_case;
|
|
|
|
|
2021-09-07 00:20:40 +08:00
|
|
|
use super::*;
|
2021-08-31 15:22:45 +08:00
|
|
|
|
2021-09-08 19:27:32 +08:00
|
|
|
struct ResolverInternal {
|
2021-09-22 17:19:27 +08:00
|
|
|
id_to_type: Mutex<HashMap<StrRef, Type>>,
|
|
|
|
id_to_def: Mutex<HashMap<StrRef, DefinitionId>>,
|
|
|
|
class_names: Mutex<HashMap<StrRef, Type>>,
|
2021-08-31 15:22:45 +08:00
|
|
|
}
|
|
|
|
|
2021-09-08 19:27:32 +08:00
|
|
|
impl ResolverInternal {
|
2021-09-22 17:19:27 +08:00
|
|
|
fn add_id_def(&self, id: StrRef, def: DefinitionId) {
|
2021-09-08 19:27:32 +08:00
|
|
|
self.id_to_def.lock().insert(id, def);
|
|
|
|
}
|
2021-09-14 22:49:20 +08:00
|
|
|
|
2021-09-22 17:19:27 +08:00
|
|
|
fn add_id_type(&self, id: StrRef, ty: Type) {
|
2021-09-14 22:49:20 +08:00
|
|
|
self.id_to_type.lock().insert(id, ty);
|
|
|
|
}
|
2021-09-08 19:27:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
struct Resolver(Arc<ResolverInternal>);
|
|
|
|
|
2021-08-31 15:22:45 +08:00
|
|
|
impl SymbolResolver for Resolver {
|
2021-10-16 18:08:13 +08:00
|
|
|
fn get_symbol_type(
|
|
|
|
&self,
|
|
|
|
_: &mut Unifier,
|
|
|
|
_: &[Arc<RwLock<TopLevelDef>>],
|
|
|
|
_: &PrimitiveStore,
|
|
|
|
str: StrRef,
|
|
|
|
) -> Option<Type> {
|
2021-09-22 17:19:27 +08:00
|
|
|
let ret = self.0.id_to_type.lock().get(&str).cloned();
|
2021-09-17 00:35:58 +08:00
|
|
|
if ret.is_none() {
|
2021-09-17 16:02:00 +08:00
|
|
|
// println!("unknown here resolver {}", str);
|
2021-09-17 00:35:58 +08:00
|
|
|
}
|
|
|
|
ret
|
2021-08-31 15:22:45 +08:00
|
|
|
}
|
|
|
|
|
2021-10-06 16:07:42 +08:00
|
|
|
fn get_symbol_value<'ctx, 'a>(
|
|
|
|
&self,
|
|
|
|
_: StrRef,
|
|
|
|
_: &mut CodeGenContext<'ctx, 'a>,
|
|
|
|
) -> Option<BasicValueEnum<'ctx>> {
|
2021-08-31 15:22:45 +08:00
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
|
2021-09-22 17:19:27 +08:00
|
|
|
fn get_symbol_location(&self, _: StrRef) -> Option<Location> {
|
2021-08-31 15:22:45 +08:00
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
|
2021-09-22 17:19:27 +08:00
|
|
|
fn get_identifier_def(&self, id: StrRef) -> Option<DefinitionId> {
|
|
|
|
self.0.id_to_def.lock().get(&id).cloned()
|
2021-08-31 15:22:45 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test_case(
|
|
|
|
vec![
|
|
|
|
indoc! {"
|
2021-09-07 00:20:40 +08:00
|
|
|
def fun(a: int32) -> int32:
|
2021-08-31 15:22:45 +08:00
|
|
|
return a
|
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
class A:
|
|
|
|
def __init__(self):
|
2021-09-07 00:20:40 +08:00
|
|
|
self.a: int32 = 3
|
2021-08-31 15:22:45 +08:00
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
class B:
|
|
|
|
def __init__(self):
|
|
|
|
self.b: float = 4.3
|
2021-09-22 17:19:27 +08:00
|
|
|
|
2021-08-31 15:22:45 +08:00
|
|
|
def fun(self):
|
|
|
|
self.b = self.b + 3.0
|
2021-08-31 15:41:48 +08:00
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
def foo(a: float):
|
|
|
|
a + 1.0
|
2021-08-31 17:40:38 +08:00
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
class C(B):
|
|
|
|
def __init__(self):
|
2021-09-07 00:20:40 +08:00
|
|
|
self.c: int32 = 4
|
2021-08-31 17:40:38 +08:00
|
|
|
self.a: bool = True
|
2021-08-31 15:22:45 +08:00
|
|
|
"}
|
2021-09-08 19:27:32 +08:00
|
|
|
];
|
|
|
|
"register"
|
2021-08-31 15:22:45 +08:00
|
|
|
)]
|
|
|
|
fn test_simple_register(source: Vec<&str>) {
|
2021-09-19 16:19:16 +08:00
|
|
|
let mut composer: TopLevelComposer = Default::default();
|
2021-08-31 15:22:45 +08:00
|
|
|
|
|
|
|
for s in source {
|
|
|
|
let ast = parse_program(s).unwrap();
|
|
|
|
let ast = ast[0].clone();
|
|
|
|
|
2021-09-20 14:24:16 +08:00
|
|
|
composer.register_top_level(ast, None, "".into()).unwrap();
|
2021-08-31 15:22:45 +08:00
|
|
|
}
|
|
|
|
}
|
2021-09-06 19:23:04 +08:00
|
|
|
|
|
|
|
#[test_case(
|
|
|
|
vec![
|
|
|
|
indoc! {"
|
2021-09-07 00:20:40 +08:00
|
|
|
def fun(a: int32) -> int32:
|
2021-09-06 19:23:04 +08:00
|
|
|
return a
|
|
|
|
"},
|
2021-09-07 00:20:40 +08:00
|
|
|
indoc! {"
|
|
|
|
def foo(a: float):
|
|
|
|
a + 1.0
|
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
def f(b: int64) -> int32:
|
|
|
|
return 3
|
|
|
|
"},
|
|
|
|
],
|
|
|
|
vec![
|
|
|
|
"fn[[a=0], 0]",
|
|
|
|
"fn[[a=2], 4]",
|
|
|
|
"fn[[b=1], 0]",
|
|
|
|
],
|
|
|
|
vec![
|
|
|
|
"fun",
|
|
|
|
"foo",
|
|
|
|
"f"
|
2021-09-08 19:27:32 +08:00
|
|
|
];
|
|
|
|
"function compose"
|
2021-09-06 19:23:04 +08:00
|
|
|
)]
|
2021-09-07 00:20:40 +08:00
|
|
|
fn test_simple_function_analyze(source: Vec<&str>, tys: Vec<&str>, names: Vec<&str>) {
|
2021-09-19 16:19:16 +08:00
|
|
|
let mut composer: TopLevelComposer = Default::default();
|
2021-09-08 02:27:12 +08:00
|
|
|
|
2021-09-08 19:27:32 +08:00
|
|
|
let internal_resolver = Arc::new(ResolverInternal {
|
2021-09-06 19:23:04 +08:00
|
|
|
id_to_def: Default::default(),
|
|
|
|
id_to_type: Default::default(),
|
|
|
|
class_names: Default::default(),
|
2021-09-08 19:27:32 +08:00
|
|
|
});
|
2021-10-16 18:08:13 +08:00
|
|
|
let resolver =
|
|
|
|
Arc::new(Resolver(internal_resolver.clone())) as Arc<dyn SymbolResolver + Send + Sync>;
|
2021-09-06 19:23:04 +08:00
|
|
|
|
|
|
|
for s in source {
|
|
|
|
let ast = parse_program(s).unwrap();
|
|
|
|
let ast = ast[0].clone();
|
|
|
|
|
2021-09-14 22:49:20 +08:00
|
|
|
let (id, def_id, ty) =
|
2021-09-20 14:24:16 +08:00
|
|
|
composer.register_top_level(ast, Some(resolver.clone()), "".into()).unwrap();
|
2021-10-16 18:08:13 +08:00
|
|
|
internal_resolver.add_id_def(id, def_id);
|
2021-09-14 22:49:20 +08:00
|
|
|
if let Some(ty) = ty {
|
|
|
|
internal_resolver.add_id_type(id, ty);
|
|
|
|
}
|
2021-09-06 19:23:04 +08:00
|
|
|
}
|
|
|
|
|
2021-09-14 16:16:48 +08:00
|
|
|
composer.start_analysis(true).unwrap();
|
2021-09-08 02:27:12 +08:00
|
|
|
|
2021-09-20 14:24:16 +08:00
|
|
|
for (i, (def, _)) in composer.definition_ast_list.iter().skip(composer.built_in_num).enumerate()
|
|
|
|
{
|
2021-09-07 00:20:40 +08:00
|
|
|
let def = &*def.read();
|
|
|
|
if let TopLevelDef::Function { signature, name, .. } = def {
|
2021-09-08 02:27:12 +08:00
|
|
|
let ty_str =
|
|
|
|
composer
|
|
|
|
.unifier
|
|
|
|
.stringify(*signature, &mut |id| id.to_string(), &mut |id| id.to_string());
|
2021-09-07 00:20:40 +08:00
|
|
|
assert_eq!(ty_str, tys[i]);
|
|
|
|
assert_eq!(name, names[i]);
|
|
|
|
}
|
|
|
|
}
|
2021-09-06 19:23:04 +08:00
|
|
|
}
|
2021-09-07 10:03:31 +08:00
|
|
|
|
|
|
|
#[test_case(
|
|
|
|
vec![
|
|
|
|
indoc! {"
|
2021-09-07 17:30:15 +08:00
|
|
|
class A():
|
2021-09-12 03:49:21 +08:00
|
|
|
a: int32
|
2021-09-10 16:14:08 +08:00
|
|
|
def __init__(self):
|
2021-09-12 03:49:21 +08:00
|
|
|
self.a = 3
|
2021-09-12 03:01:56 +08:00
|
|
|
def fun(self, b: B):
|
2021-09-07 10:03:31 +08:00
|
|
|
pass
|
2021-09-12 03:01:56 +08:00
|
|
|
def foo(self, a: T, b: V):
|
2021-09-08 02:27:12 +08:00
|
|
|
pass
|
2021-09-07 10:03:31 +08:00
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
class B(C):
|
2021-09-10 16:14:08 +08:00
|
|
|
def __init__(self):
|
2021-09-07 10:03:31 +08:00
|
|
|
pass
|
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
class C(A):
|
2021-09-10 16:14:08 +08:00
|
|
|
def __init__(self):
|
2021-09-07 17:30:15 +08:00
|
|
|
pass
|
2021-09-12 03:01:56 +08:00
|
|
|
def fun(self, b: B):
|
2021-09-07 17:30:15 +08:00
|
|
|
a = 1
|
2021-09-07 10:03:31 +08:00
|
|
|
pass
|
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
def foo(a: A):
|
|
|
|
pass
|
|
|
|
"},
|
2021-09-08 02:27:12 +08:00
|
|
|
indoc! {"
|
|
|
|
def ff(a: T) -> V:
|
|
|
|
pass
|
|
|
|
"}
|
2021-09-07 17:30:15 +08:00
|
|
|
],
|
2021-10-03 16:39:12 +08:00
|
|
|
vec![];
|
2021-09-08 19:27:32 +08:00
|
|
|
"simple class compose"
|
|
|
|
)]
|
|
|
|
#[test_case(
|
|
|
|
vec![
|
|
|
|
indoc! {"
|
2021-09-08 21:53:54 +08:00
|
|
|
class Generic_A(Generic[V], B):
|
2021-09-12 03:49:21 +08:00
|
|
|
a: int64
|
2021-09-10 16:14:08 +08:00
|
|
|
def __init__(self):
|
2021-09-12 03:49:21 +08:00
|
|
|
self.a = 123123123123
|
2021-09-10 16:14:08 +08:00
|
|
|
def fun(self, a: int32) -> V:
|
2021-09-08 21:53:54 +08:00
|
|
|
pass
|
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
class B:
|
2021-09-12 03:49:21 +08:00
|
|
|
aa: bool
|
2021-09-10 16:14:08 +08:00
|
|
|
def __init__(self):
|
2021-09-12 03:49:21 +08:00
|
|
|
self.aa = False
|
2021-09-10 16:14:08 +08:00
|
|
|
def foo(self, b: T):
|
2021-09-08 19:27:32 +08:00
|
|
|
pass
|
|
|
|
"}
|
|
|
|
],
|
2021-10-03 16:39:12 +08:00
|
|
|
vec![];
|
2021-09-08 19:27:32 +08:00
|
|
|
"generic class"
|
2021-09-07 10:03:31 +08:00
|
|
|
)]
|
2021-09-09 02:03:44 +08:00
|
|
|
#[test_case(
|
|
|
|
vec![
|
|
|
|
indoc! {"
|
|
|
|
def foo(a: list[int32], b: tuple[T, float]) -> A[B, bool]:
|
|
|
|
pass
|
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
class A(Generic[T, V]):
|
2021-09-12 03:49:21 +08:00
|
|
|
a: T
|
|
|
|
b: V
|
2021-09-10 16:14:08 +08:00
|
|
|
def __init__(self, v: V):
|
2021-09-12 03:49:21 +08:00
|
|
|
self.a = 1
|
|
|
|
self.b = v
|
2021-09-12 03:01:56 +08:00
|
|
|
def fun(self, a: T) -> V:
|
2021-09-09 02:03:44 +08:00
|
|
|
pass
|
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
def gfun(a: A[list[float], int32]):
|
|
|
|
pass
|
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
class B:
|
2021-09-10 16:14:08 +08:00
|
|
|
def __init__(self):
|
2021-09-09 02:03:44 +08:00
|
|
|
pass
|
|
|
|
"}
|
|
|
|
],
|
2021-10-03 16:39:12 +08:00
|
|
|
vec![];
|
2021-09-09 02:03:44 +08:00
|
|
|
"list tuple generic"
|
|
|
|
)]
|
2021-09-12 03:01:56 +08:00
|
|
|
#[test_case(
|
|
|
|
vec![
|
|
|
|
indoc! {"
|
|
|
|
class A(Generic[T, V]):
|
2021-09-12 03:49:21 +08:00
|
|
|
a: A[float, bool]
|
|
|
|
b: B
|
2021-09-12 03:01:56 +08:00
|
|
|
def __init__(self, a: A[float, bool], b: B):
|
2021-09-12 03:49:21 +08:00
|
|
|
self.a = a
|
|
|
|
self.b = b
|
2021-09-12 03:01:56 +08:00
|
|
|
def fun(self, a: A[float, bool]) -> A[bool, int32]:
|
|
|
|
pass
|
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
class B(A[int64, bool]):
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
def foo(self, b: B) -> B:
|
|
|
|
pass
|
|
|
|
def bar(self, a: A[list[B], int32]) -> tuple[A[virtual[A[B, int32]], bool], B]:
|
|
|
|
pass
|
|
|
|
"}
|
|
|
|
],
|
2021-10-03 16:39:12 +08:00
|
|
|
vec![];
|
2021-09-12 03:01:56 +08:00
|
|
|
"self1"
|
|
|
|
)]
|
2021-09-12 04:34:30 +08:00
|
|
|
#[test_case(
|
|
|
|
vec![
|
|
|
|
indoc! {"
|
|
|
|
class A(Generic[T]):
|
|
|
|
a: int32
|
|
|
|
b: T
|
|
|
|
c: A[int64]
|
|
|
|
def __init__(self, t: T):
|
|
|
|
self.a = 3
|
|
|
|
self.b = T
|
|
|
|
def fun(self, a: int32, b: T) -> list[virtual[B[bool]]]:
|
|
|
|
pass
|
|
|
|
def foo(self, c: C):
|
|
|
|
pass
|
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
class B(Generic[V], A[float]):
|
|
|
|
d: C
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
def fun(self, a: int32, b: T) -> list[virtual[B[bool]]]:
|
|
|
|
# override
|
|
|
|
pass
|
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
class C(B[bool]):
|
|
|
|
e: int64
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
"}
|
|
|
|
],
|
2021-10-03 16:39:12 +08:00
|
|
|
vec![];
|
2021-09-12 04:34:30 +08:00
|
|
|
"inheritance_override"
|
|
|
|
)]
|
2021-09-12 03:01:56 +08:00
|
|
|
#[test_case(
|
|
|
|
vec![
|
|
|
|
indoc! {"
|
|
|
|
class A(Generic[T]):
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
def fun(self, a: A[T]) -> A[T]:
|
|
|
|
pass
|
|
|
|
"}
|
|
|
|
],
|
|
|
|
vec!["application of type vars to generic class is not currently supported"];
|
|
|
|
"err no type var in generic app"
|
|
|
|
)]
|
|
|
|
#[test_case(
|
|
|
|
vec![
|
|
|
|
indoc! {"
|
|
|
|
class A(B):
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
class B(A):
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
"}
|
|
|
|
],
|
|
|
|
vec!["cyclic inheritance detected"];
|
|
|
|
"cyclic1"
|
|
|
|
)]
|
|
|
|
#[test_case(
|
|
|
|
vec![
|
|
|
|
indoc! {"
|
|
|
|
class A(B[bool, int64]):
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
class B(Generic[V, T], C[int32]):
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
class C(Generic[T], A):
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
"},
|
|
|
|
],
|
|
|
|
vec!["cyclic inheritance detected"];
|
|
|
|
"cyclic2"
|
|
|
|
)]
|
2021-09-20 14:24:16 +08:00
|
|
|
#[test_case(
|
|
|
|
vec![
|
|
|
|
indoc! {"
|
|
|
|
class A:
|
|
|
|
pass
|
|
|
|
"}
|
|
|
|
],
|
|
|
|
vec!["5: Class {\nname: \"A\",\ndef_id: DefinitionId(5),\nancestors: [CustomClassKind { id: DefinitionId(5), params: [] }],\nfields: [],\nmethods: [],\ntype_vars: []\n}"];
|
|
|
|
"simple pass in class"
|
|
|
|
)]
|
2021-09-10 21:26:39 +08:00
|
|
|
#[test_case(
|
|
|
|
vec![indoc! {"
|
|
|
|
class A:
|
|
|
|
def __init__():
|
|
|
|
pass
|
|
|
|
"}],
|
|
|
|
vec!["__init__ function must have a `self` parameter"];
|
|
|
|
"err no self_1"
|
|
|
|
)]
|
|
|
|
#[test_case(
|
|
|
|
vec![
|
|
|
|
indoc! {"
|
|
|
|
class A(B, Generic[T], C):
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
class B:
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
class C:
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
"}
|
|
|
|
|
|
|
|
],
|
|
|
|
vec!["a class def can only have at most one base class declaration and one generic declaration"];
|
|
|
|
"err multiple inheritance"
|
|
|
|
)]
|
2021-09-12 04:34:30 +08:00
|
|
|
#[test_case(
|
|
|
|
vec![
|
|
|
|
indoc! {"
|
|
|
|
class A(Generic[T]):
|
|
|
|
a: int32
|
|
|
|
b: T
|
|
|
|
c: A[int64]
|
|
|
|
def __init__(self, t: T):
|
|
|
|
self.a = 3
|
|
|
|
self.b = T
|
|
|
|
def fun(self, a: int32, b: T) -> list[virtual[B[bool]]]:
|
|
|
|
pass
|
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
class B(Generic[V], A[float]):
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
def fun(self, a: int32, b: T) -> list[virtual[B[int32]]]:
|
|
|
|
# override
|
|
|
|
pass
|
|
|
|
"}
|
|
|
|
],
|
|
|
|
vec!["method has same name as ancestors' method, but incompatible type"];
|
|
|
|
"err_incompatible_inheritance_method"
|
|
|
|
)]
|
|
|
|
#[test_case(
|
|
|
|
vec![
|
|
|
|
indoc! {"
|
|
|
|
class A(Generic[T]):
|
|
|
|
a: int32
|
|
|
|
b: T
|
|
|
|
c: A[int64]
|
|
|
|
def __init__(self, t: T):
|
|
|
|
self.a = 3
|
|
|
|
self.b = T
|
|
|
|
def fun(self, a: int32, b: T) -> list[virtual[B[bool]]]:
|
|
|
|
pass
|
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
class B(Generic[V], A[float]):
|
|
|
|
a: int32
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
def fun(self, a: int32, b: T) -> list[virtual[B[bool]]]:
|
|
|
|
# override
|
|
|
|
pass
|
|
|
|
"}
|
|
|
|
],
|
|
|
|
vec!["field `a` has already declared in the ancestor classes"];
|
|
|
|
"err_incompatible_inheritance_field"
|
|
|
|
)]
|
2021-09-12 05:00:26 +08:00
|
|
|
#[test_case(
|
|
|
|
vec![
|
|
|
|
indoc! {"
|
|
|
|
class A:
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
class A:
|
|
|
|
a: int32
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
"}
|
|
|
|
],
|
|
|
|
vec!["duplicate definition of class"];
|
|
|
|
"class same name"
|
|
|
|
)]
|
2021-09-12 03:49:21 +08:00
|
|
|
fn test_analyze(source: Vec<&str>, res: Vec<&str>) {
|
2021-09-10 21:26:39 +08:00
|
|
|
let print = false;
|
2021-09-19 16:19:16 +08:00
|
|
|
let mut composer: TopLevelComposer = Default::default();
|
2021-09-08 02:27:12 +08:00
|
|
|
|
2021-09-17 16:02:00 +08:00
|
|
|
let internal_resolver = make_internal_resolver_with_tvar(
|
2021-09-20 14:24:16 +08:00
|
|
|
vec![
|
2021-09-17 16:02:00 +08:00
|
|
|
("T".into(), vec![]),
|
|
|
|
("V".into(), vec![composer.primitives_ty.bool, composer.primitives_ty.int32]),
|
|
|
|
("G".into(), vec![composer.primitives_ty.bool, composer.primitives_ty.int64]),
|
|
|
|
],
|
|
|
|
&mut composer.unifier,
|
2021-09-20 14:24:16 +08:00
|
|
|
print,
|
2021-09-17 16:02:00 +08:00
|
|
|
);
|
2021-10-16 18:08:13 +08:00
|
|
|
let resolver =
|
|
|
|
Arc::new(Resolver(internal_resolver.clone())) as Arc<dyn SymbolResolver + Send + Sync>;
|
2021-09-07 10:03:31 +08:00
|
|
|
|
|
|
|
for s in source {
|
|
|
|
let ast = parse_program(s).unwrap();
|
|
|
|
let ast = ast[0].clone();
|
|
|
|
|
2021-09-14 22:49:20 +08:00
|
|
|
let (id, def_id, ty) = {
|
2021-09-20 14:24:16 +08:00
|
|
|
match composer.register_top_level(ast, Some(resolver.clone()), "".into()) {
|
2021-09-10 21:26:39 +08:00
|
|
|
Ok(x) => x,
|
|
|
|
Err(msg) => {
|
|
|
|
if print {
|
|
|
|
println!("{}", msg);
|
|
|
|
} else {
|
|
|
|
assert_eq!(res[0], msg);
|
|
|
|
}
|
2021-09-12 04:40:40 +08:00
|
|
|
return;
|
2021-09-10 21:26:39 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2021-09-22 17:19:27 +08:00
|
|
|
internal_resolver.add_id_def(id, def_id);
|
2021-09-14 22:49:20 +08:00
|
|
|
if let Some(ty) = ty {
|
|
|
|
internal_resolver.add_id_type(id, ty);
|
|
|
|
}
|
2021-09-07 10:03:31 +08:00
|
|
|
}
|
|
|
|
|
2021-09-14 16:16:48 +08:00
|
|
|
if let Err(msg) = composer.start_analysis(false) {
|
2021-09-10 21:26:39 +08:00
|
|
|
if print {
|
|
|
|
println!("{}", msg);
|
|
|
|
} else {
|
|
|
|
assert_eq!(res[0], msg);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// skip 5 to skip primitives
|
2021-10-03 16:39:12 +08:00
|
|
|
let mut res_vec: Vec<String> = Vec::new();
|
2021-09-20 14:24:16 +08:00
|
|
|
for (i, (def, _)) in
|
|
|
|
composer.definition_ast_list.iter().skip(composer.built_in_num).enumerate()
|
|
|
|
{
|
2021-09-10 21:26:39 +08:00
|
|
|
let def = &*def.read();
|
2021-10-03 16:39:12 +08:00
|
|
|
res_vec.push(format!(
|
|
|
|
"{}: {}\n",
|
|
|
|
i + composer.built_in_num,
|
|
|
|
def.to_string(
|
|
|
|
composer.unifier.borrow_mut(),
|
|
|
|
&mut |id| format!("class{}", id),
|
|
|
|
&mut |id| format!("tvar{}", id)
|
2021-09-08 21:53:54 +08:00
|
|
|
)
|
2021-10-03 16:39:12 +08:00
|
|
|
));
|
2021-09-10 21:26:39 +08:00
|
|
|
}
|
2021-10-03 16:39:12 +08:00
|
|
|
insta::assert_debug_snapshot!(res_vec);
|
2021-09-07 17:30:15 +08:00
|
|
|
}
|
2021-09-08 02:27:12 +08:00
|
|
|
}
|
2021-09-14 16:16:48 +08:00
|
|
|
|
|
|
|
#[test_case(
|
|
|
|
vec![
|
|
|
|
indoc! {"
|
|
|
|
def fun(a: int32, b: int32) -> int32:
|
|
|
|
return a + b
|
2021-09-14 22:49:20 +08:00
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
def fib(n: int32) -> int32:
|
|
|
|
if n <= 2:
|
|
|
|
return 1
|
|
|
|
a = fib(n - 1)
|
|
|
|
b = fib(n - 2)
|
|
|
|
return fib(n - 1)
|
2021-09-14 16:16:48 +08:00
|
|
|
"}
|
|
|
|
],
|
|
|
|
vec![];
|
|
|
|
"simple function"
|
|
|
|
)]
|
|
|
|
#[test_case(
|
|
|
|
vec![
|
|
|
|
indoc! {"
|
|
|
|
class A:
|
|
|
|
a: int32
|
|
|
|
def __init__(self):
|
|
|
|
self.a = 3
|
|
|
|
def fun(self) -> int32:
|
|
|
|
b = self.a + 3
|
|
|
|
return b * self.a
|
2021-09-14 22:49:20 +08:00
|
|
|
def clone(self) -> A:
|
2021-09-14 16:16:48 +08:00
|
|
|
SELF = self
|
|
|
|
return SELF
|
2021-09-14 22:49:20 +08:00
|
|
|
def sum(self) -> int32:
|
|
|
|
if self.a == 0:
|
2021-09-21 02:48:42 +08:00
|
|
|
return self.a
|
2021-09-14 22:49:20 +08:00
|
|
|
else:
|
|
|
|
a = self.a
|
|
|
|
self.a = self.a - 1
|
|
|
|
return a + self.sum()
|
|
|
|
def fib(self, a: int32) -> int32:
|
|
|
|
if a <= 2:
|
|
|
|
return 1
|
|
|
|
return self.fib(a - 1) + self.fib(a - 2)
|
2021-09-14 16:16:48 +08:00
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
def fun(a: A) -> int32:
|
2021-09-14 22:49:20 +08:00
|
|
|
return a.fun() + 2
|
2021-09-14 16:16:48 +08:00
|
|
|
"}
|
|
|
|
],
|
|
|
|
vec![];
|
|
|
|
"simple class body"
|
|
|
|
)]
|
2021-09-17 00:35:58 +08:00
|
|
|
#[test_case(
|
|
|
|
vec![
|
|
|
|
indoc! {"
|
2021-09-17 16:02:00 +08:00
|
|
|
def fun(a: V, c: G, t: T) -> V:
|
2021-09-17 01:47:54 +08:00
|
|
|
b = a
|
2021-09-17 16:02:00 +08:00
|
|
|
cc = c
|
|
|
|
ret = fun(b, cc, t)
|
|
|
|
return ret * ret
|
|
|
|
"},
|
|
|
|
indoc! {"
|
2021-09-21 02:48:42 +08:00
|
|
|
def sum_three(l: list[V]) -> V:
|
2021-09-17 16:02:00 +08:00
|
|
|
return l[0] + l[1] + l[2]
|
|
|
|
"},
|
|
|
|
indoc! {"
|
|
|
|
def sum_sq_pair(p: tuple[V, V]) -> list[V]:
|
|
|
|
a = p[0]
|
|
|
|
b = p[1]
|
|
|
|
a = a**a
|
|
|
|
b = b**b
|
|
|
|
return [a, b]
|
2021-09-17 00:35:58 +08:00
|
|
|
"}
|
|
|
|
],
|
|
|
|
vec![];
|
|
|
|
"type var fun"
|
|
|
|
)]
|
2021-09-17 16:02:00 +08:00
|
|
|
#[test_case(
|
|
|
|
vec![
|
|
|
|
indoc! {"
|
|
|
|
class A(Generic[G]):
|
|
|
|
a: G
|
|
|
|
b: bool
|
|
|
|
def __init__(self, aa: G):
|
|
|
|
self.a = aa
|
2021-09-21 02:48:42 +08:00
|
|
|
if 2 > 1:
|
|
|
|
self.b = True
|
|
|
|
else:
|
|
|
|
# self.b = False
|
|
|
|
pass
|
2021-09-17 16:02:00 +08:00
|
|
|
def fun(self, a: G) -> list[G]:
|
|
|
|
ret = [a, self.a]
|
|
|
|
return ret if self.b else self.fun(self.a)
|
|
|
|
"}
|
|
|
|
],
|
|
|
|
vec![];
|
|
|
|
"type var class"
|
|
|
|
)]
|
2021-09-21 02:48:42 +08:00
|
|
|
#[test_case(
|
|
|
|
vec![
|
|
|
|
indoc! {"
|
|
|
|
class A:
|
|
|
|
def fun(self):
|
2021-09-21 13:19:13 +08:00
|
|
|
pass
|
2021-09-21 02:48:42 +08:00
|
|
|
"},
|
|
|
|
indoc!{"
|
|
|
|
class B:
|
|
|
|
a: int32
|
|
|
|
b: bool
|
|
|
|
def __init__(self):
|
|
|
|
# self.b = False
|
|
|
|
if 3 > 2:
|
|
|
|
self.a = 3
|
|
|
|
self.b = False
|
|
|
|
else:
|
|
|
|
self.a = 4
|
|
|
|
self.b = True
|
|
|
|
"}
|
|
|
|
],
|
|
|
|
vec![];
|
|
|
|
"no_init_inst_check"
|
|
|
|
)]
|
2021-09-14 16:16:48 +08:00
|
|
|
fn test_inference(source: Vec<&str>, res: Vec<&str>) {
|
|
|
|
let print = true;
|
2021-09-19 16:19:16 +08:00
|
|
|
let mut composer: TopLevelComposer = Default::default();
|
2021-09-14 16:16:48 +08:00
|
|
|
|
2021-09-17 16:02:00 +08:00
|
|
|
let internal_resolver = make_internal_resolver_with_tvar(
|
2021-09-20 14:24:16 +08:00
|
|
|
vec![
|
2021-09-17 16:02:00 +08:00
|
|
|
("T".into(), vec![]),
|
2021-09-20 14:24:16 +08:00
|
|
|
(
|
|
|
|
"V".into(),
|
|
|
|
vec![
|
|
|
|
composer.primitives_ty.float,
|
|
|
|
composer.primitives_ty.int32,
|
|
|
|
composer.primitives_ty.int64,
|
|
|
|
],
|
|
|
|
),
|
2021-09-17 16:02:00 +08:00
|
|
|
("G".into(), vec![composer.primitives_ty.bool, composer.primitives_ty.int64]),
|
|
|
|
],
|
|
|
|
&mut composer.unifier,
|
2021-09-20 14:24:16 +08:00
|
|
|
print,
|
2021-09-17 16:02:00 +08:00
|
|
|
);
|
2021-09-14 16:16:48 +08:00
|
|
|
let resolver = Arc::new(
|
2021-10-16 18:08:13 +08:00
|
|
|
Resolver(internal_resolver.clone())
|
|
|
|
) as Arc<dyn SymbolResolver + Send + Sync>;
|
2021-09-14 16:16:48 +08:00
|
|
|
|
|
|
|
for s in source {
|
|
|
|
let ast = parse_program(s).unwrap();
|
|
|
|
let ast = ast[0].clone();
|
|
|
|
|
2021-09-14 22:49:20 +08:00
|
|
|
let (id, def_id, ty) = {
|
2021-09-20 14:24:16 +08:00
|
|
|
match composer.register_top_level(ast, Some(resolver.clone()), "".into()) {
|
2021-09-14 16:16:48 +08:00
|
|
|
Ok(x) => x,
|
|
|
|
Err(msg) => {
|
|
|
|
if print {
|
|
|
|
println!("{}", msg);
|
|
|
|
} else {
|
|
|
|
assert_eq!(res[0], msg);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2021-10-16 18:08:13 +08:00
|
|
|
internal_resolver.add_id_def(id, def_id);
|
2021-09-14 22:49:20 +08:00
|
|
|
if let Some(ty) = ty {
|
|
|
|
internal_resolver.add_id_type(id, ty);
|
|
|
|
}
|
2021-09-14 16:16:48 +08:00
|
|
|
}
|
2021-09-14 22:49:20 +08:00
|
|
|
|
2021-09-14 16:16:48 +08:00
|
|
|
if let Err(msg) = composer.start_analysis(true) {
|
|
|
|
if print {
|
|
|
|
println!("{}", msg);
|
|
|
|
} else {
|
|
|
|
assert_eq!(res[0], msg);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// skip 5 to skip primitives
|
2021-09-20 14:24:16 +08:00
|
|
|
let mut stringify_folder = TypeToStringFolder { unifier: &mut composer.unifier };
|
|
|
|
for (_i, (def, _)) in
|
|
|
|
composer.definition_ast_list.iter().skip(composer.built_in_num).enumerate()
|
|
|
|
{
|
2021-09-14 16:16:48 +08:00
|
|
|
let def = &*def.read();
|
|
|
|
|
2021-09-14 22:49:20 +08:00
|
|
|
if let TopLevelDef::Function { instance_to_stmt, name, .. } = def {
|
2021-09-20 14:24:16 +08:00
|
|
|
println!(
|
|
|
|
"=========`{}`: number of instances: {}===========",
|
|
|
|
name,
|
|
|
|
instance_to_stmt.len()
|
|
|
|
);
|
2021-09-14 16:16:48 +08:00
|
|
|
for inst in instance_to_stmt.iter() {
|
|
|
|
let ast = &inst.1.body;
|
2021-09-22 17:19:27 +08:00
|
|
|
for b in ast.iter() {
|
2021-09-17 01:47:54 +08:00
|
|
|
println!("{:?}", stringify_folder.fold_stmt(b.clone()).unwrap());
|
2021-09-14 22:49:20 +08:00
|
|
|
println!("--------------------");
|
|
|
|
}
|
|
|
|
println!("\n");
|
2021-09-14 16:16:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-09-14 22:49:20 +08:00
|
|
|
}
|
2021-09-17 01:47:54 +08:00
|
|
|
|
2021-09-20 14:24:16 +08:00
|
|
|
fn make_internal_resolver_with_tvar(
|
2021-09-22 17:19:27 +08:00
|
|
|
tvars: Vec<(StrRef, Vec<Type>)>,
|
2021-09-20 14:24:16 +08:00
|
|
|
unifier: &mut Unifier,
|
|
|
|
print: bool,
|
|
|
|
) -> Arc<ResolverInternal> {
|
2021-09-17 16:02:00 +08:00
|
|
|
let res: Arc<ResolverInternal> = ResolverInternal {
|
|
|
|
id_to_def: Default::default(),
|
|
|
|
id_to_type: tvars
|
|
|
|
.into_iter()
|
2021-09-20 14:24:16 +08:00
|
|
|
.map(|(name, range)| {
|
2021-10-16 18:08:13 +08:00
|
|
|
(name, {
|
2021-09-17 16:02:00 +08:00
|
|
|
let (ty, id) = unifier.get_fresh_var_with_range(range.as_slice());
|
|
|
|
if print {
|
|
|
|
println!("{}: {:?}, tvar{}", name, ty, id);
|
|
|
|
}
|
|
|
|
ty
|
2021-09-20 14:24:16 +08:00
|
|
|
})
|
|
|
|
})
|
2021-09-17 16:02:00 +08:00
|
|
|
.collect::<HashMap<_, _>>()
|
|
|
|
.into(),
|
2021-09-20 14:24:16 +08:00
|
|
|
class_names: Default::default(),
|
|
|
|
}
|
|
|
|
.into();
|
2021-09-17 16:02:00 +08:00
|
|
|
if print {
|
|
|
|
println!();
|
|
|
|
}
|
|
|
|
res
|
|
|
|
}
|
|
|
|
|
2021-09-17 01:47:54 +08:00
|
|
|
struct TypeToStringFolder<'a> {
|
2021-09-20 14:24:16 +08:00
|
|
|
unifier: &'a mut Unifier,
|
2021-09-17 01:47:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Fold<Option<Type>> for TypeToStringFolder<'a> {
|
|
|
|
type TargetU = String;
|
|
|
|
type Error = String;
|
|
|
|
fn map_user(&mut self, user: Option<Type>) -> Result<Self::TargetU, Self::Error> {
|
|
|
|
Ok(if let Some(ty) = user {
|
2021-09-20 14:24:16 +08:00
|
|
|
self.unifier.stringify(ty, &mut |id| format!("class{}", id.to_string()), &mut |id| {
|
|
|
|
format!("tvar{}", id.to_string())
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
"None".into()
|
|
|
|
})
|
2021-09-17 01:47:54 +08:00
|
|
|
}
|
2021-09-20 14:24:16 +08:00
|
|
|
}
|