mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 22:09:09 +00:00
Rename Full -> FullAst
This commit is contained in:
parent
3f7f1891f3
commit
0abea91796
9 changed files with 17 additions and 17 deletions
|
@ -15,7 +15,7 @@ use roc_module::ident::QualifiedModuleName;
|
|||
use roc_region::all::{Loc, Position, Region};
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct Full<'a> {
|
||||
pub struct FullAst<'a> {
|
||||
pub header: SpacesBefore<'a, Header<'a>>,
|
||||
pub defs: Defs<'a>,
|
||||
}
|
||||
|
@ -2436,7 +2436,7 @@ pub trait Malformed {
|
|||
fn is_malformed(&self) -> bool;
|
||||
}
|
||||
|
||||
impl<'a> Malformed for Full<'a> {
|
||||
impl<'a> Malformed for FullAst<'a> {
|
||||
fn is_malformed(&self) -> bool {
|
||||
self.header.item.is_malformed() || self.defs.is_malformed()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue