Move module name validation outside of type-checking

And disable it for documentation generation. This way, we can generate documentation for aiken/builtins and aiken (prelude)
This commit is contained in:
KtorZ
2023-02-22 11:51:32 +01:00
parent 6465af3ae2
commit 0838d48f7c
6 changed files with 95 additions and 64 deletions

View File

@@ -277,7 +277,7 @@ impl Annotated<Schema> {
Ok(Annotated {
title: Some("Tuple".to_owned()),
description: None,
annotated: Schema::Data(Some(Data::List(Items::Many(elems)))).into(),
annotated: Schema::Data(Some(Data::List(Items::Many(elems)))),
})
}
},