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
use crate::{build_config::BuildConfig, error::*, parse_tree::ident, parser::Rule, Ident};
use sway_types::span::{join_spans, Span};
use pest::iterators::Pair;
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
pub struct CallPath {
pub prefixes: Vec<Ident>,
pub suffix: Ident,
}
impl std::convert::From<Ident> for CallPath {
fn from(other: Ident) -> Self {
CallPath {
prefixes: vec![],
suffix: other,
}
}
}
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
pub struct OwnedCallPath {
pub prefixes: Vec<String>,
pub suffix: String,
}
use std::fmt;
impl fmt::Display for CallPath {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let mut buf = self.prefixes.iter().map(|x| x.as_str()).collect::<Vec<_>>();
let suffix = self.suffix.as_str();
buf.push(suffix);
write!(f, "{}", buf.join("::"))
}
}
impl CallPath {
pub(crate) fn to_owned_call_path(&self) -> OwnedCallPath {
OwnedCallPath {
prefixes: self
.prefixes
.iter()
.map(|x| x.as_str().to_string())
.collect(),
suffix: self.suffix.as_str().to_string(),
}
}
}
impl CallPath {
pub(crate) fn span(&self) -> Span {
if self.prefixes.is_empty() {
self.suffix.span().clone()
} else {
let prefixes_span = self
.prefixes
.iter()
.fold(self.prefixes[0].span().clone(), |acc, sp| {
join_spans(acc, sp.span().clone())
});
join_spans(prefixes_span, self.suffix.span().clone())
}
}
pub(crate) fn parse_from_pair(
pair: Pair<Rule>,
config: Option<&BuildConfig>,
) -> CompileResult<CallPath> {
let mut warnings = vec![];
let mut errors = vec![];
let mut pairs_buf = vec![];
for pair in pair.into_inner() {
if pair.as_rule() != Rule::path_separator {
pairs_buf.push(check!(
ident::parse_from_pair(pair, config),
continue,
warnings,
errors
));
}
}
assert!(!pairs_buf.is_empty());
let suffix = pairs_buf.pop().unwrap();
let prefixes = pairs_buf;
ok(CallPath { prefixes, suffix }, warnings, errors)
}
}