1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
use is_macro::Is;
use swc_common::{ast_node, util::take::Take, EqIgnoreSpan, Span, DUMMY_SP};
use crate::{
class::Decorator,
pat::Pat,
stmt::BlockStmt,
typescript::{TsParamProp, TsTypeAnn, TsTypeParamDecl},
};
#[ast_node]
#[derive(Eq, Hash, EqIgnoreSpan)]
#[cfg_attr(feature = "arbitrary", derive(arbitrary::Arbitrary))]
pub struct Function {
pub params: Vec<Param>,
#[serde(default)]
pub decorators: Vec<Decorator>,
pub span: Span,
#[serde(default)]
pub body: Option<BlockStmt>,
#[serde(default, rename = "generator")]
pub is_generator: bool,
#[serde(default, rename = "async")]
pub is_async: bool,
#[serde(default, rename = "typeParameters")]
pub type_params: Option<Box<TsTypeParamDecl>>,
#[serde(default)]
pub return_type: Option<Box<TsTypeAnn>>,
}
impl Take for Function {
fn dummy() -> Self {
Function {
params: Take::dummy(),
decorators: Take::dummy(),
span: DUMMY_SP,
body: Take::dummy(),
is_generator: false,
is_async: false,
type_params: Take::dummy(),
return_type: Take::dummy(),
}
}
}
#[ast_node("Parameter")]
#[derive(Eq, Hash, EqIgnoreSpan)]
#[cfg_attr(feature = "arbitrary", derive(arbitrary::Arbitrary))]
pub struct Param {
pub span: Span,
#[serde(default)]
pub decorators: Vec<Decorator>,
pub pat: Pat,
}
impl From<Pat> for Param {
fn from(pat: Pat) -> Self {
Self {
span: DUMMY_SP,
decorators: Default::default(),
pat,
}
}
}
#[ast_node]
#[derive(Eq, Hash, Is, EqIgnoreSpan)]
#[cfg_attr(feature = "arbitrary", derive(arbitrary::Arbitrary))]
pub enum ParamOrTsParamProp {
#[tag("TsParameterProperty")]
TsParamProp(TsParamProp),
#[tag("Parameter")]
Param(Param),
}