Address feedback

This commit is contained in:
Pranav Gaddamadugu 2022-08-11 07:50:10 -07:00
parent 974e93cadf
commit 67f9890653
2 changed files with 3 additions and 5 deletions

View File

@ -322,10 +322,8 @@ impl<'a> TypeChecker<'a> {
pub(crate) fn assert_type_is_valid(&self, span: Span, type_: &Type) {
match type_ {
// Check that the named composite type has been defined.
Type::Identifier(identifier) => {
if self.symbol_table.borrow().lookup_circuit(identifier.name).is_none() {
self.emit_err(TypeCheckerError::undefined_type(identifier.name, span));
}
Type::Identifier(identifier) if self.symbol_table.borrow().lookup_circuit(identifier.name).is_none() => {
self.emit_err(TypeCheckerError::undefined_type(identifier.name, span));
}
// Check that the constituent types are valid.
Type::Tuple(tuple_type) => {

View File

@ -11,4 +11,4 @@ circuit Foo {
@program
function main(a: u8) -> u8 {
return a + 1u8;
}
}