363
364
365
366
367
368
369
370
371
372
373
374
375
376
|
break
s.a_ly = s2.a_ly;
s2.a_ly = null
break
}
break
}
continue
}
if (s.feathered_beam)
set_feathered_beam(s)
}
}
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
|
break
s.a_ly = s2.a_ly;
s2.a_ly = null
break
}
break
}
continue
case C.MREST:
if (s.next && s.next.type != C.BAR) {
syntax(1, "Lack of bar after multi-measure rest")
s2 = clone(s)
s2.type = C.BAR
s2.bar_type = '|'
s2.dur = 0
s2.time = s.next.time
s2.prev = s
s2.next = s.next
s2.next.prev = s2
s.next = s2
}
continue
}
if (s.feathered_beam)
set_feathered_beam(s)
}
}
|