mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +00:00
renames
This commit is contained in:
parent
22cd581edc
commit
93e4bff855
8 changed files with 18 additions and 19 deletions
|
@ -1,6 +1,6 @@
|
|||
use crate::annotation::{Formattable, Newlines, Parens};
|
||||
use crate::collection::{fmt_collection, Braces};
|
||||
use crate::def::fmt_toplevel_defs;
|
||||
use crate::def::fmt_defs;
|
||||
use crate::pattern::fmt_pattern;
|
||||
use crate::spaces::{count_leading_newlines, fmt_comments_only, fmt_spaces, NewlineAt, INDENT};
|
||||
use crate::Buf;
|
||||
|
@ -322,7 +322,7 @@ impl<'a> Formattable for Expr<'a> {
|
|||
// (Canonicalization can remove defs later, but that hasn't happened yet!)
|
||||
debug_assert!(!defs.is_empty());
|
||||
|
||||
fmt_toplevel_defs(buf, defs, indent);
|
||||
fmt_defs(buf, defs, indent);
|
||||
|
||||
match &ret.value {
|
||||
SpaceBefore(sub_expr, spaces) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue