checker: fix build

pull/3810/head
Alexander Medvednikov 2020-02-22 12:58:16 +01:00
parent e459e6d24a
commit 6f577321f1
1 changed files with 2 additions and 0 deletions

View File

@ -195,6 +195,7 @@ pub fn (c mut Checker) check_method_call_expr(method_call_expr ast.MethodCallExp
}
}
c.error('type `$typ_sym.name` has no method `$method_call_expr.name`', method_call_expr.pos)
return table.void_type
}
pub fn (c mut Checker) selector_expr(selector_expr ast.SelectorExpr) table.Type {
@ -221,6 +222,7 @@ pub fn (c mut Checker) selector_expr(selector_expr ast.SelectorExpr) table.Type
else {
c.error('unknown field `${typ_sym.name}.$field_name`', selector_expr.pos)
}
return table.void_type
}
// TODO: non deferred