7 lines
163 B
Rust
7 lines
163 B
Rust
/// A marker trait... for now!
|
|
// TODO: constrain that conversion to `NodeKind::Error` is enforced to be possible
|
|
pub trait SyntaxError
|
|
where
|
|
Self: Clone,
|
|
{
|
|
}
|