breaking: arp use innerJoin instead of squeezeJoin

This commit is contained in:
Felix Roos
2023-01-11 23:28:17 +01:00
parent 500c0b6534
commit 6e315a50ed
3 changed files with 68 additions and 5 deletions
+51
View File
@@ -822,6 +822,40 @@ exports[`runs examples > example "apply" example index 0 1`] = `
]
`;
exports[`runs examples > example "arp" example index 0 1`] = `
[
"[ 0/1 → 1/2 | note:c ]",
"[ 1/2 → 1/1 | note:c ]",
"[ 1/2 → 1/1 | note:g ]",
"[ 1/1 → 3/2 | note:eb ]",
"[ 3/2 → 2/1 | note:c ]",
"[ 3/2 → 2/1 | note:g ]",
"[ 2/1 → 5/2 | note:c ]",
"[ 5/2 → 3/1 | note:c ]",
"[ 5/2 → 3/1 | note:g ]",
"[ 3/1 → 7/2 | note:eb ]",
"[ 7/2 → 4/1 | note:c ]",
"[ 7/2 → 4/1 | note:g ]",
]
`;
exports[`runs examples > example "arpWith" example index 0 1`] = `
[
"[ 0/1 → 1/2 | note:c ]",
"[ 1/2 → 1/1 | note:c ]",
"[ 1/2 → 1/1 | note:g ]",
"[ 1/1 → 3/2 | note:eb ]",
"[ 3/2 → 2/1 | note:c ]",
"[ 3/2 → 2/1 | note:g ]",
"[ 2/1 → 5/2 | note:c ]",
"[ 5/2 → 3/1 | note:c ]",
"[ 5/2 → 3/1 | note:g ]",
"[ 3/1 → 7/2 | note:eb ]",
"[ 7/2 → 4/1 | note:c ]",
"[ 7/2 → 4/1 | note:g ]",
]
`;
exports[`runs examples > example "attack" example index 0 1`] = `
[
"[ 0/1 → 1/2 | note:c3 attack:0 ]",
@@ -3418,3 +3452,20 @@ exports[`runs examples > example "when" example index 0 1`] = `
"[ 11/3 → 4/1 | note:50 ]",
]
`;
exports[`runs examples > example "withValue" example index 0 1`] = `
[
"[ 0/1 → 1/3 | 10 ]",
"[ 1/3 → 2/3 | 11 ]",
"[ 2/3 → 1/1 | 12 ]",
"[ 1/1 → 4/3 | 10 ]",
"[ 4/3 → 5/3 | 11 ]",
"[ 5/3 → 2/1 | 12 ]",
"[ 2/1 → 7/3 | 10 ]",
"[ 7/3 → 8/3 | 11 ]",
"[ 8/3 → 3/1 | 12 ]",
"[ 3/1 → 10/3 | 10 ]",
"[ 10/3 → 11/3 | 11 ]",
"[ 11/3 → 4/1 | 12 ]",
]
`;