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
---
source: crates/aiken-lang/src/parser/expr/record.rs
description: "Code:\n\nUser { name: \"Aiken\", age, thing: 2 }"
---
Call {
arguments: [
CallArg {
label: Some(
"name",
),
location: 7..20,
value: ByteArray {
location: 13..20,
bytes: [
65,
105,
107,
101,
110,
],
preferred_format: Utf8String,
},
},
CallArg {
label: Some(
"age",
),
location: 22..25,
value: Var {
location: 22..25,
name: "age",
},
},
CallArg {
label: Some(
"thing",
),
location: 27..35,
value: UInt {
location: 34..35,
value: "2",
base: Decimal {
numeric_underscore: false,
},
},
},
],
fun: Var {
location: 0..4,
name: "User",
},
location: 0..37,
}