mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-01 07:41:12 +00:00
Rename Located -> Loc
This commit is contained in:
parent
c66c845cd2
commit
f19220473a
55 changed files with 680 additions and 683 deletions
|
@ -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,
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue