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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
use crate::component::*;
use crate::core;
use crate::kw;
use crate::parser::{Parse, Parser, Result};
use crate::token::{Id, LParen, NameAnnotation, Span};
#[derive(Debug)]
pub struct CoreInstance<'a> {
pub span: Span,
pub id: Option<Id<'a>>,
pub name: Option<NameAnnotation<'a>>,
pub kind: CoreInstanceKind<'a>,
}
impl<'a> Parse<'a> for CoreInstance<'a> {
fn parse(parser: Parser<'a>) -> Result<Self> {
let span = parser.parse::<kw::core>()?.0;
parser.parse::<kw::instance>()?;
let id = parser.parse()?;
let name = parser.parse()?;
let kind = parser.parse()?;
Ok(Self {
span,
id,
name,
kind,
})
}
}
#[derive(Debug)]
pub enum CoreInstanceKind<'a> {
Instantiate {
module: ItemRef<'a, kw::module>,
args: Vec<CoreInstantiationArg<'a>>,
},
BundleOfExports(Vec<CoreInstanceExport<'a>>),
}
impl<'a> Parse<'a> for CoreInstanceKind<'a> {
fn parse(parser: Parser<'a>) -> Result<Self> {
if parser.peek::<LParen>() && parser.peek2::<kw::instantiate>() {
parser.parens(|parser| {
parser.parse::<kw::instantiate>()?;
Ok(Self::Instantiate {
module: parser.parse::<IndexOrRef<'_, _>>()?.0,
args: parser.parse()?,
})
})
} else {
Ok(Self::BundleOfExports(parser.parse()?))
}
}
}
impl Default for kw::module {
fn default() -> kw::module {
kw::module(Span::from_offset(0))
}
}
#[derive(Debug)]
pub struct CoreInstantiationArg<'a> {
pub name: &'a str,
pub kind: CoreInstantiationArgKind<'a>,
}
impl<'a> Parse<'a> for CoreInstantiationArg<'a> {
fn parse(parser: Parser<'a>) -> Result<Self> {
parser.parse::<kw::with>()?;
Ok(Self {
name: parser.parse()?,
kind: parser.parse()?,
})
}
}
impl<'a> Parse<'a> for Vec<CoreInstantiationArg<'a>> {
fn parse(parser: Parser<'a>) -> Result<Self> {
let mut args = Vec::new();
while !parser.is_empty() {
args.push(parser.parens(|parser| parser.parse())?);
}
Ok(args)
}
}
#[derive(Debug)]
pub enum CoreInstantiationArgKind<'a> {
Instance(CoreItemRef<'a, kw::instance>),
BundleOfExports(Span, Vec<CoreInstanceExport<'a>>),
}
impl<'a> Parse<'a> for CoreInstantiationArgKind<'a> {
fn parse(parser: Parser<'a>) -> Result<Self> {
parser.parens(|parser| {
if let Some(r) = parser.parse()? {
Ok(Self::Instance(r))
} else {
let span = parser.parse::<kw::instance>()?.0;
Ok(Self::BundleOfExports(span, parser.parse()?))
}
})
}
}
#[derive(Debug)]
pub struct CoreInstanceExport<'a> {
pub span: Span,
pub name: &'a str,
pub item: CoreItemRef<'a, core::ExportKind>,
}
impl<'a> Parse<'a> for CoreInstanceExport<'a> {
fn parse(parser: Parser<'a>) -> Result<Self> {
Ok(Self {
span: parser.parse::<kw::export>()?.0,
name: parser.parse()?,
item: parser.parens(|parser| parser.parse())?,
})
}
}
impl<'a> Parse<'a> for Vec<CoreInstanceExport<'a>> {
fn parse(parser: Parser<'a>) -> Result<Self> {
let mut exports = Vec::new();
while !parser.is_empty() {
exports.push(parser.parens(|parser| parser.parse())?);
}
Ok(exports)
}
}
#[derive(Debug)]
pub struct Instance<'a> {
pub span: Span,
pub id: Option<Id<'a>>,
pub name: Option<NameAnnotation<'a>>,
pub exports: core::InlineExport<'a>,
pub kind: InstanceKind<'a>,
}
impl<'a> Parse<'a> for Instance<'a> {
fn parse(parser: Parser<'a>) -> Result<Self> {
let span = parser.parse::<kw::instance>()?.0;
let id = parser.parse()?;
let name = parser.parse()?;
let exports = parser.parse()?;
let kind = parser.parse()?;
Ok(Self {
span,
id,
name,
exports,
kind,
})
}
}
#[derive(Debug)]
pub enum InstanceKind<'a> {
Import {
import: InlineImport<'a>,
ty: ComponentTypeUse<'a, InstanceType<'a>>,
},
Instantiate {
component: ItemRef<'a, kw::component>,
args: Vec<InstantiationArg<'a>>,
},
BundleOfExports(Vec<ComponentExport<'a>>),
}
impl<'a> Parse<'a> for InstanceKind<'a> {
fn parse(parser: Parser<'a>) -> Result<Self> {
if let Some(import) = parser.parse()? {
return Ok(Self::Import {
import,
ty: parser.parse()?,
});
}
if parser.peek::<LParen>() && parser.peek2::<kw::instantiate>() {
parser.parens(|parser| {
parser.parse::<kw::instantiate>()?;
Ok(Self::Instantiate {
component: parser.parse::<IndexOrRef<'_, _>>()?.0,
args: parser.parse()?,
})
})
} else {
Ok(Self::BundleOfExports(parser.parse()?))
}
}
}
impl Default for kw::component {
fn default() -> kw::component {
kw::component(Span::from_offset(0))
}
}
#[derive(Debug)]
pub struct InstantiationArg<'a> {
pub name: &'a str,
pub kind: InstantiationArgKind<'a>,
}
impl<'a> Parse<'a> for InstantiationArg<'a> {
fn parse(parser: Parser<'a>) -> Result<Self> {
parser.parse::<kw::with>()?;
Ok(Self {
name: parser.parse()?,
kind: parser.parse()?,
})
}
}
impl<'a> Parse<'a> for Vec<InstantiationArg<'a>> {
fn parse(parser: Parser<'a>) -> Result<Self> {
let mut args = Vec::new();
while !parser.is_empty() {
args.push(parser.parens(|parser| parser.parse())?);
}
Ok(args)
}
}
#[derive(Debug)]
pub enum InstantiationArgKind<'a> {
Item(ComponentExportKind<'a>),
BundleOfExports(Span, Vec<ComponentExport<'a>>),
}
impl<'a> Parse<'a> for InstantiationArgKind<'a> {
fn parse(parser: Parser<'a>) -> Result<Self> {
if let Some(item) = parser.parse()? {
Ok(Self::Item(item))
} else {
parser.parens(|parser| {
let span = parser.parse::<kw::instance>()?.0;
Ok(Self::BundleOfExports(span, parser.parse()?))
})
}
}
}