KtorZ
|
1f15c2ca20
|
Sort import alphabetically when formatting.
Fixes #211.
|
2022-12-22 18:00:25 +01:00 |
KtorZ
|
1ca705005d
|
Fix formatting of if-expressions
Fixes #129.
|
2022-12-22 16:51:23 +01:00 |
Matthias Benkort
|
a129a8a0d3
|
Merge pull request #208 from aiken-lang/tuple-when2
fix todo and list and tuple not equal operator
|
2022-12-22 10:28:06 +01:00 |
KtorZ
|
7ad8babf17
|
Rename ArgName::{Discard,NamedLabeled} as ArgName::{Discarded,Named}
Now that the other variants are gone, this is clearer.
|
2022-12-22 09:36:44 +01:00 |
KtorZ
|
8ab05509b1
|
Remove Named & DiscardLabeled, now unused
And unify everything into either 'Discard' or 'NamedLabeled'
|
2022-12-22 09:36:44 +01:00 |
KtorZ
|
bf7cdfba73
|
Implement parser & type-checker for tuple indexes.
```aiken
fn foo() {
let tuple = #(1, 2, 3, 4)
tuple.1st + tuple.2nd + tuple.3rd + tuple.4th
}
```
|
2022-12-22 09:14:23 +01:00 |
Kasey White
|
b1dec1259d
|
fix todo and list and tuple not equal comparator
|
2022-12-22 01:09:06 -05:00 |
rvcas
|
7867793bcd
|
feat: on fmt if label and name are the same only print one
|
2022-12-21 19:17:15 -05:00 |
rvcas
|
4c4e454ea3
|
feat: all function args are now labeled implicitly
|
2022-12-21 19:17:15 -05:00 |
rvcas
|
42204d2d71
|
chore: make folder names match crate name
|
2022-12-21 18:11:07 -05:00 |