forked from M-Labs/nac3
core: Use Display output for locations
This commit is contained in:
parent
27011f385b
commit
1963c30744
|
@ -337,7 +337,7 @@ impl<'a> Inferencer<'a> {
|
|||
if !self.check_return_value_ty(ret_ty) {
|
||||
return Err(HashSet::from([
|
||||
format!(
|
||||
"return value of type {} must be a primitive of a tuple of primitives at {:?}",
|
||||
"return value of type {} must be a primitive of a tuple of primitives at {}",
|
||||
self.unifier.stringify(ret_ty),
|
||||
value.location,
|
||||
),
|
||||
|
@ -366,7 +366,7 @@ impl<'a> Inferencer<'a> {
|
|||
let mut ret = false;
|
||||
for stmt in block {
|
||||
if ret {
|
||||
eprintln!("warning: dead code at {:?}\n", stmt.location);
|
||||
eprintln!("warning: dead code at {}\n", stmt.location);
|
||||
}
|
||||
if self.check_stmt(stmt, defined_identifiers)? {
|
||||
ret = true;
|
||||
|
|
Loading…
Reference in New Issue