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
use rnode::{Visit, VisitWith};
use stc_ts_ast_rnode::{RArrowExpr, RClass, RFunction, RSeqExpr, RSuper};
use swc_common::Span;
#[derive(Debug, Default)]
pub struct ConstructorSuperCallFinder {
pub has_valid_super_call: bool,
in_nested: bool,
pub nested_super_calls: Vec<Span>,
}
impl Visit<RSuper> for ConstructorSuperCallFinder {
fn visit(&mut self, s: &RSuper) {
if self.in_nested {
self.nested_super_calls.push(s.span);
} else {
self.has_valid_super_call = true;
}
}
}
impl Visit<RFunction> for ConstructorSuperCallFinder {
fn visit(&mut self, f: &RFunction) {
f.decorators.visit_with(self);
f.params.visit_with(self);
let old = self.in_nested;
self.in_nested = true;
f.body.visit_with(self);
self.in_nested = old;
}
}
impl Visit<RArrowExpr> for ConstructorSuperCallFinder {
fn visit(&mut self, f: &RArrowExpr) {
f.params.visit_with(self);
let old = self.in_nested;
self.in_nested = true;
f.body.visit_with(self);
self.in_nested = old;
}
}
impl Visit<RClass> for ConstructorSuperCallFinder {
fn visit(&mut self, _: &RClass) {}
}
impl Visit<RSeqExpr> for ConstructorSuperCallFinder {
fn visit(&mut self, v: &RSeqExpr) {
if self.in_nested {
return;
}
v.visit_children_with(self);
}
}