mirror of
https://github.com/MorizzG/rlox.git
synced 2025-12-06 04:12:42 +00:00
fixed typo
This commit is contained in:
parent
274faf1e0a
commit
8c7d55b842
1 changed files with 1 additions and 1 deletions
|
|
@ -13,6 +13,6 @@ pub enum ResolverError {
|
||||||
ThisOutsideMethod,
|
ThisOutsideMethod,
|
||||||
#[error("super outside of subclass method")]
|
#[error("super outside of subclass method")]
|
||||||
SuperOutsideMethod,
|
SuperOutsideMethod,
|
||||||
#[error("local variable {name} declares multiple times")]
|
#[error("local variable {name} declared multiple times")]
|
||||||
LocalMulipleDeclarations { name: SmolStr },
|
LocalMulipleDeclarations { name: SmolStr },
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue