-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- #28
- Loading branch information
Showing
17 changed files
with
142 additions
and
21 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
test/org/midica/testfiles/failing/eff-flow-broken-by-call.midica
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
INCLUDE inc/instruments.midica | ||
|
||
|
||
0: vol.wait() | ||
0: vol.wait().set(50) | ||
CALL func | ||
0: .set(50) | ||
0: .wait.set(50) | ||
|
||
FUNCTION func | ||
END |
4 changes: 2 additions & 2 deletions
4
test/org/midica/testfiles/failing/eff-flow-broken-by-const.midica
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
INCLUDE inc/instruments.midica | ||
|
||
|
||
0: vol.wait() | ||
0: vol.wait().set(50) | ||
CONST $x = y | ||
0: .set(50) | ||
0: .wait.set(50) | ||
|
4 changes: 2 additions & 2 deletions
4
test/org/midica/testfiles/failing/eff-flow-broken-by-function.midica
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
INCLUDE inc/instruments.midica | ||
|
||
|
||
0: vol.wait() | ||
0: vol.wait().set(50) | ||
FUNCTION func | ||
END | ||
0: .set(50) | ||
0: .wait.set(50) | ||
|
||
CALL func |
4 changes: 2 additions & 2 deletions
4
test/org/midica/testfiles/failing/eff-flow-broken-by-note.midica
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
INCLUDE inc/instruments.midica | ||
|
||
|
||
0: vol.wait() | ||
0: vol.wait().set(50) | ||
0: c | ||
0: .set(50) | ||
0: .wait.set(50) | ||
|
6 changes: 3 additions & 3 deletions
6
test/org/midica/testfiles/failing/eff-flow-broken-by-other-channel.midica
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
INCLUDE inc/instruments.midica | ||
|
||
|
||
0: vol.wait() | ||
1: balance.wait() | ||
0: .set(50) | ||
0: vol.wait().set(50) | ||
1: balance.wait().set(+50) | ||
0: .wait.set(50) | ||
|
4 changes: 2 additions & 2 deletions
4
test/org/midica/testfiles/failing/eff-flow-broken-by-var.midica
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
INCLUDE inc/instruments.midica | ||
|
||
|
||
0: vol.double | ||
0: vol.double.set(50) | ||
VAR $x = y | ||
0: .set(50) | ||
0: .wait.set(50) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
INCLUDE inc/instruments.midica | ||
|
||
|
||
0: vol.wait | ||
1: c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
INCLUDE inc/instruments.midica | ||
|
||
|
||
0: hold.wait |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
INCLUDE inc/instruments.midica | ||
|
||
|
||
0: hold.wait | ||
|
24 changes: 24 additions & 0 deletions
24
test/org/midica/testfiles/failing/eff-flow-pending-4.midica
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
INCLUDE inc/instruments.midica | ||
|
||
|
||
|
||
FUNCTION func | ||
{ | ||
{ | ||
0: hold.wait | ||
|
||
0: c | ||
|
||
} | ||
} | ||
END | ||
|
||
{ | ||
{ | ||
|
||
CALL func | ||
0: a | ||
|
||
} | ||
} | ||
|