(b: Beat, marks: number)
| 2042 | } |
| 2043 | |
| 2044 | function addTremolo(b: Beat, marks: number) { |
| 2045 | if (b.graceType !== GraceType.None) { |
| 2046 | return; |
| 2047 | } |
| 2048 | b.tremoloPicking = new TremoloPickingEffect(); |
| 2049 | b.tremoloPicking.marks = marks; |
| 2050 | b.tremoloPicking.style = TremoloPickingStyle.Default; |
| 2051 | } |
| 2052 | |
| 2053 | // as reference to check snapshots |
| 2054 | describe('plain', () => { |
no outgoing calls
no test coverage detected