mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 17:54:15 +03:00
33 lines
588 B
Rust
33 lines
588 B
Rust
#![allow(clippy::ptr_arg)]
|
|
|
|
use std::any::Any;
|
|
|
|
use swc_visit::define;
|
|
|
|
/// Visitable nodes.
|
|
pub trait Node: Any {}
|
|
|
|
impl<T: ?Sized> Node for T where T: Any {}
|
|
|
|
pub struct Item {
|
|
// pub field: usize,
|
|
// pub inner: Option<Box<Item>>,
|
|
pub opt_vec: Option<Vec<Item>>,
|
|
pub vec_opt: Vec<Option<Item>>,
|
|
}
|
|
pub enum Enum {
|
|
Item(Item),
|
|
}
|
|
|
|
define!({
|
|
pub struct Item {
|
|
// pub field: usize,
|
|
// pub inner: Option<Box<Item>>,
|
|
pub opt_vec: Option<Vec<Item>>,
|
|
pub vec_opt: Vec<Option<Item>>,
|
|
}
|
|
pub enum Enum {
|
|
Item(Item),
|
|
}
|
|
});
|