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
use std::hash::Hash;
use swc_common::collections::{AHashMap, AHashSet};
pub trait Sortable: Send + Sync {
type Id: Eq + Hash + Send + Sync;
fn precedence(&self) -> u8;
fn get_decls(&self) -> AHashMap<Self::Id, AHashSet<Self::Id>>;
fn uses(&self) -> AHashSet<Self::Id>;
}
impl<T> Sortable for &'_ T
where
T: Sortable,
{
type Id = T::Id;
fn precedence(&self) -> u8 {
(**self).precedence()
}
fn get_decls(&self) -> AHashMap<Self::Id, AHashSet<Self::Id>> {
(**self).get_decls()
}
fn uses(&self) -> AHashSet<Self::Id> {
(**self).uses()
}
}