Rename Located -> Loc

This commit is contained in:
Joshua Warner 2021-12-22 19:18:22 -08:00
parent c66c845cd2
commit f19220473a
55 changed files with 680 additions and 683 deletions

View file

@ -4,7 +4,7 @@ use crate::{
Buf,
};
use roc_parse::ast::{AssignedField, Expr, Tag, TypeAnnotation};
use roc_region::all::Located;
use roc_region::all::Loc;
/// Does an AST node need parens around it?
///
@ -83,7 +83,7 @@ where
}
/// A Located formattable value is also formattable
impl<T> Formattable for Located<T>
impl<T> Formattable for Loc<T>
where
T: Formattable,
{