checker: remove unnecessary exits

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

View File

@ -195,7 +195,6 @@ 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)
exit(1)
}
pub fn (c mut Checker) selector_expr(selector_expr ast.SelectorExpr) table.Type {
@ -222,7 +221,6 @@ 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)
}
exit(0)
}
// TODO: non deferred