mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +00:00
loc_has -> loc_implements
This commit is contained in:
parent
d700a6a6e6
commit
46cb45f717
5 changed files with 7 additions and 7 deletions
|
@ -123,7 +123,7 @@ impl<'a> Formattable for TypeDef<'a> {
|
|||
}
|
||||
Ability {
|
||||
header: TypeHeader { name, vars },
|
||||
loc_has: _,
|
||||
loc_implements: _,
|
||||
members,
|
||||
} => {
|
||||
buf.indent(indent);
|
||||
|
|
|
@ -507,14 +507,14 @@ impl<'a> RemoveSpaces<'a> for TypeDef<'a> {
|
|||
},
|
||||
Ability {
|
||||
header: TypeHeader { name, vars },
|
||||
loc_has,
|
||||
loc_implements: loc_has,
|
||||
members,
|
||||
} => Ability {
|
||||
header: TypeHeader {
|
||||
name: name.remove_spaces(arena),
|
||||
vars: vars.remove_spaces(arena),
|
||||
},
|
||||
loc_has: loc_has.remove_spaces(arena),
|
||||
loc_implements: loc_has.remove_spaces(arena),
|
||||
members: members.remove_spaces(arena),
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue