Skip to content

Commit

Permalink
🥢 Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Philogy committed Nov 7, 2024
1 parent dd7c00a commit 2ed3a75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/analysis/src/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ use huff_ast::{Definition, IdentifiableNode, Instruction, Macro, Spanned};

type InvokeChain<'src, 'ast> = Box<[(&'ast Macro<'src>, &'ast Spanned<&'src str>)]>;

#[derive(Debug, Clone)]
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Inclusion<'src, 'ast: 'src> {
pub entry_point: Spanned<&'src str>,
pub invoke_stack: InvokeChain<'src, 'ast>,
pub inclusion: Spanned<&'src str>,
}

#[derive(Debug, Clone)]
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum AnalysisError<'ast, 'src> {
/// When two different definitions have the same.
DefinitionNameCollision {
Expand Down

0 comments on commit 2ed3a75

Please sign in to comment.