mirror of
https://github.com/swc-project/swc.git
synced 2024-12-25 22:56:11 +03:00
11d056c777
Move FromVariant to a separate crate
29 lines
649 B
Rust
29 lines
649 B
Rust
//! Test that `#[span]` and `#[fold]` can be used at same time.
|
|
use serde::{self, Deserialize, Serialize};
|
|
use swc_common::{self, ast_node, Fold, Span, Spanned};
|
|
|
|
#[ast_node("Class")]
|
|
// See https://github.com/rust-lang/rust/issues/44925
|
|
pub struct Class {
|
|
#[span]
|
|
pub has_span: HasSpan,
|
|
#[fold(ignore)]
|
|
pub s: String,
|
|
}
|
|
|
|
#[ast_node("Tuple")]
|
|
pub struct Tuple(#[span] HasSpan, #[fold(ignore)] usize, usize);
|
|
|
|
#[derive(Debug, Clone, PartialEq, Fold, Spanned, Serialize, Deserialize)]
|
|
pub struct HasSpan {
|
|
pub span: Span,
|
|
}
|
|
|
|
#[ast_node]
|
|
pub enum Node {
|
|
#[tag("Class")]
|
|
Class(Class),
|
|
#[tag("Tuple")]
|
|
Tuple(Tuple),
|
|
}
|