Implement parser & type-checker for tuple indexes.
```aiken
fn foo() {
let tuple = #(1, 2, 3, 4)
tuple.1st + tuple.2nd + tuple.3rd + tuple.4th
}
```
This commit is contained in:
@@ -15,6 +15,7 @@ chumsky = "0.8.0"
|
||||
indexmap = "1.9.1"
|
||||
itertools = "0.10.5"
|
||||
miette = "5.2.0"
|
||||
ordinal = "0.3.2"
|
||||
strum = "0.24.1"
|
||||
thiserror = "1.0.37"
|
||||
uplc = { path = '../uplc', version = "0.0.25" }
|
||||
|
||||
Reference in New Issue
Block a user