9 lines
192 B
Rust
9 lines
192 B
Rust
|
use crate::syntax_kind::SyntaxKind;
|
||
|
|
||
|
#[derive(Clone)]
|
||
|
pub enum SyntaxError {
|
||
|
DisallowedKeyType(SyntaxKind),
|
||
|
MemberMissingValue,
|
||
|
}
|
||
|
impl pawarser::parser::SyntaxError for SyntaxError {}
|