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
crate::use_native_or_external!(Maybe);
crate::use_native_or_external!(Ptr);
crate::use_native_or_external!(StringPtr);
crate::use_native_or_external!(List);
use crate::Bytes;
use crate::Loc;
use crate::Node;
pub trait InnerNode: std::fmt::Debug {
fn expression(&self) -> &Loc;
fn str_type(&self) -> &'static str;
fn inspected_children(&self, indent: usize) -> Vec<String>;
fn inspect(&self, indent: usize) -> String {
let indented = " ".repeat(indent);
let mut sexp = format!("{}s(:{}", indented, self.str_type());
for child in self.inspected_children(indent) {
sexp.push_str(&child);
}
sexp.push(')');
sexp
}
fn print_with_locs(&self);
}
pub(crate) struct InspectVec {
indent: usize,
strings: Vec<String>,
}
impl InspectVec {
pub(crate) fn new(indent: usize) -> Self {
Self {
indent,
strings: vec![],
}
}
pub(crate) fn push_str(&mut self, string: &StringPtr) {
self.strings.push(format!(", {:?}", string));
}
pub(crate) fn push_raw_str(&mut self, string: &StringPtr) {
self.strings.push(format!(", {}", string.as_str()));
}
pub(crate) fn push_maybe_str(&mut self, string: &Maybe<StringPtr>) {
if let Some(string) = string.as_ref() {
self.strings.push(format!(", {:?}", string));
}
}
pub(crate) fn push_nil(&mut self) {
self.strings.push(", nil".to_string());
}
pub(crate) fn push_u8(&mut self, n: &u8) {
self.strings.push(format!(", {}", n))
}
pub(crate) fn push_node(&mut self, node: &Node) {
self.strings
.push(format!(",\n{}", node.inspect(self.indent + 1)))
}
pub(crate) fn push_maybe_node(&mut self, node: &Maybe<Ptr<Node>>) {
if let Some(node) = node.as_ref() {
self.push_node(node)
}
}
pub(crate) fn push_regex_options(&mut self, node: &Maybe<Ptr<Node>>) {
if let Some(node) = node.as_ref() {
self.push_node(node)
} else {
self.strings.push(format!(
",\n{}{}",
" ".repeat(self.indent + 1),
"s(:regopt)"
))
}
}
pub(crate) fn push_maybe_node_or_nil(&mut self, node: &Maybe<Ptr<Node>>) {
if let Some(node) = node.as_ref() {
self.push_node(node)
} else {
self.push_nil()
}
}
pub(crate) fn push_nodes(&mut self, nodes: &List<Node>) {
for node in nodes.iter() {
self.push_node(node)
}
}
pub(crate) fn push_chars(&mut self, chars: &Maybe<StringPtr>) {
if let Some(chars) = chars.as_ref() {
for c in chars.as_str().chars() {
self.push_str(&StringPtr::from(format!("{}", c)));
}
}
}
pub(crate) fn push_string_value(&mut self, bytes: &Bytes) {
self.push_str(&bytes.to_string_lossy())
}
pub(crate) fn strings(&mut self) -> Vec<String> {
std::mem::take(&mut self.strings)
}
}