Rename Full -> FullAst

This commit is contained in:
Joshua Warner 2024-08-10 13:20:54 -07:00
parent 3f7f1891f3
commit 0abea91796
No known key found for this signature in database
GPG key ID: 89AD497003F93FDD
9 changed files with 17 additions and 17 deletions

View file

@ -1,7 +1,7 @@
use bumpalo::Bump;
use roc_fmt::{annotation::Formattable, header::fmt_header};
use roc_parse::{
ast::{Defs, Expr, Full, Header, Malformed, SpacesBefore},
ast::{Defs, Expr, FullAst, Header, Malformed, SpacesBefore},
header::parse_module_defs,
parser::{Parser, SyntaxError},
remove_spaces::RemoveSpaces,
@ -76,7 +76,7 @@ pub enum Output<'a> {
Expr(Expr<'a>),
Full(Full<'a>),
Full(FullAst<'a>),
}
impl<'a> Output<'a> {
@ -182,7 +182,7 @@ impl<'a> Input<'a> {
let defs = parse_module_defs(arena, state, defs)?;
Ok(Output::Full(Full { header, defs }))
Ok(Output::Full(FullAst { header, defs }))
}
}
}