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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
use crate::{span::Span, Spanned};
use std::{
cmp::{Ord, Ordering},
fmt,
hash::{Hash, Hasher},
};
pub trait Named {
fn name(&self) -> &BaseIdent;
}
#[derive(Debug, Clone)]
pub struct BaseIdent {
name_override_opt: Option<&'static str>,
span: Span,
is_raw_ident: bool,
}
impl BaseIdent {
pub fn as_str(&self) -> &str {
self.name_override_opt.unwrap_or_else(|| self.span.as_str())
}
pub fn is_raw_ident(&self) -> bool {
self.is_raw_ident
}
pub fn name_override_opt(&self) -> Option<&'static str> {
self.name_override_opt
}
pub fn new(span: Span) -> Ident {
let span = span.trim();
Ident {
name_override_opt: None,
span,
is_raw_ident: false,
}
}
pub fn new_no_trim(span: Span) -> Ident {
Ident {
name_override_opt: None,
span,
is_raw_ident: false,
}
}
pub fn new_with_raw(span: Span, is_raw_ident: bool) -> Ident {
let span = span.trim();
Ident {
name_override_opt: None,
span,
is_raw_ident,
}
}
pub fn new_with_override(name_override: &'static str, span: Span) -> Ident {
Ident {
name_override_opt: Some(name_override),
span,
is_raw_ident: false,
}
}
pub fn new_no_span(name: &'static str) -> Ident {
Ident {
name_override_opt: Some(name),
span: Span::dummy(),
is_raw_ident: false,
}
}
}
pub type Ident = BaseIdent;
impl Hash for Ident {
fn hash<H: Hasher>(&self, state: &mut H) {
self.as_str().hash(state);
}
}
impl PartialEq for Ident {
fn eq(&self, other: &Self) -> bool {
self.as_str() == other.as_str()
}
}
impl Ord for Ident {
fn cmp(&self, other: &Self) -> Ordering {
self.as_str().cmp(other.as_str())
}
}
impl PartialOrd for Ident {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
Some(self.cmp(other))
}
}
impl Eq for Ident {}
impl Spanned for Ident {
fn span(&self) -> Span {
self.span.clone()
}
}
impl fmt::Display for Ident {
fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
write!(formatter, "{}", self.as_str())
}
}
#[derive(Debug, Clone)]
pub struct IdentUnique(BaseIdent);
impl From<Ident> for IdentUnique {
fn from(item: Ident) -> Self {
IdentUnique(item)
}
}
impl From<&Ident> for IdentUnique {
fn from(item: &Ident) -> Self {
IdentUnique(item.clone())
}
}
impl From<&IdentUnique> for Ident {
fn from(item: &IdentUnique) -> Self {
Ident {
name_override_opt: item.0.name_override_opt(),
span: item.0.span(),
is_raw_ident: item.0.is_raw_ident(),
}
}
}
impl Hash for IdentUnique {
fn hash<H: Hasher>(&self, state: &mut H) {
self.0.span().hash(state);
}
}
impl PartialEq for IdentUnique {
fn eq(&self, other: &Self) -> bool {
self.0.span() == other.0.span()
}
}
impl Ord for IdentUnique {
fn cmp(&self, other: &Self) -> Ordering {
self.0.span().cmp(&other.0.span())
}
}
impl PartialOrd for IdentUnique {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
Some(self.cmp(other))
}
}
impl Eq for IdentUnique {}