A. LilyPond grammar
This appendix contains a description of the LilyPond grammar, as
output from the parser.
Grammar
1 start_symbol: lilypond
3 start_symbol: "#{" $ embedded_lilypond
4 lilypond: %empty
5 | lilypond toplevel_expression
6 | lilypond assignment
7 | lilypond error
8 | lilypond "\version-error"
9 toplevel_expression: header_block
10 | book_block
11 | bookpart_block
12 | BOOK_IDENTIFIER
13 | score_block
14 | composite_music
15 | full_markup
16 | full_markup_list
17 | SCM_TOKEN
18 | embedded_scm_active
19 | output_def
20 lookup: LOOKUP_IDENTIFIER
21 | LOOKUP_IDENTIFIER '.' symbol_list_rev
22 embedded_scm_bare: SCM_TOKEN
23 | SCM_IDENTIFIER
24 embedded_scm_active: SCM_IDENTIFIER
25 | scm_function_call
26 | lookup
27 embedded_scm_bare_arg: SCM_ARG
28 | SCM_TOKEN
29 | FRACTION
30 | partial_markup
31 | full_markup_list
32 | context_modification
33 | header_block
34 | score_block
35 | context_def_spec_block
36 | book_block
37 | bookpart_block
38 | output_def
39 | lookup
40 embedded_scm: embedded_scm_bare
41 | scm_function_call
42 | lookup
43 embedded_scm_arg: embedded_scm_bare_arg
44 | scm_function_call
45 | music_assign
46 scm_function_call: SCM_FUNCTION function_arglist
47 embedded_lilypond_number: '-' embedded_lilypond_number
48 | bare_number_common
49 | UNSIGNED NUMBER_IDENTIFIER
50 embedded_lilypond: %empty
51 | identifier_init_nonumber
52 | embedded_lilypond_number
53 | post_event
54 | multiplied_duration post_events
55 | music_embedded music_embedded music_list
56 | error
57 | "\version-error" embedded_lilypond
58 lilypond_header_body: %empty
59 | lilypond_header_body assignment
60 | lilypond_header_body SCM_TOKEN
61 | lilypond_header_body embedded_scm_active
62 lilypond_header: "\header" '{' lilypond_header_body '}'
64 header_block: $ lilypond_header
65 assignment_id: STRING
66 | SYMBOL
67 assignment: assignment_id '=' identifier_init
68 | assignment_id '.' property_path '=' identifier_init
69 | assignment_id ',' property_path '=' identifier_init
70 | markup_mode_word '=' identifier_init
71 identifier_init: identifier_init_nonumber
72 | number_expression
73 | symbol_list_part_bare '.' property_path
74 | symbol_list_part_bare ',' property_path
75 | post_event_nofinger post_events
76 identifier_init_nonumber: header_block
77 | score_block
78 | book_block
79 | bookpart_block
80 | output_def
81 | context_def_spec_block
82 | music_assign
83 | pitch_or_music
84 | FRACTION
85 | string
86 | embedded_scm
87 | partial_markup
88 | full_markup_list
89 | context_modification
90 | partial_function "\etc"
91 partial_function: MUSIC_FUNCTION function_arglist_partial
92 | EVENT_FUNCTION function_arglist_partial
93 | SCM_FUNCTION function_arglist_partial
94 | "\override" grob_prop_path '='
95 | "\set" context_prop_spec '='
96 | MUSIC_FUNCTION
"scheme?"
function_arglist_optional
partial_function
97 | EVENT_FUNCTION
"scheme?"
function_arglist_optional
partial_function
98 | SCM_FUNCTION
"scheme?"
function_arglist_optional
partial_function
99 | "\override" grob_prop_path '=' partial_function
100 | "\set" context_prop_spec '=' partial_function
101 | MUSIC_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
102 | EVENT_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
103 | SCM_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
104 context_def_spec_block: "\context" '{' context_def_spec_body '}'
105 context_mod_arg: embedded_scm
107 context_mod_arg: $ composite_music
108 context_def_spec_body: %empty
109 | context_def_spec_body context_mod
110 | context_def_spec_body context_modification
111 | context_def_spec_body context_mod_arg
112 book_block: "\book" '{' book_body '}'
113 book_body: %empty
114 | BOOK_IDENTIFIER
115 | book_body paper_block
116 | book_body bookpart_block
117 | book_body score_block
118 | book_body composite_music
119 | book_body full_markup
120 | book_body full_markup_list
121 | book_body SCM_TOKEN
122 | book_body embedded_scm_active
124 book_body: book_body $ lilypond_header
125 | book_body error
126 bookpart_block: "\bookpart" '{' bookpart_body '}'
127 bookpart_body: %empty
128 | BOOK_IDENTIFIER
129 | bookpart_body paper_block
130 | bookpart_body score_block
131 | bookpart_body composite_music
132 | bookpart_body full_markup
133 | bookpart_body full_markup_list
134 | bookpart_body SCM_TOKEN
135 | bookpart_body embedded_scm_active
137 bookpart_body: bookpart_body $ lilypond_header
138 | bookpart_body error
139 score_block: "\score" '{' score_body '}'
140 score_body: score_items
141 | score_body error
142 score_item: embedded_scm
143 | music
144 | output_def
145 score_items: %empty
146 | score_items score_item
148 score_items: score_items $ lilypond_header
149 paper_block: output_def
150 output_def: output_def_body '}'
151 output_def_head: "\paper"
152 | "\midi"
153 | "\layout"
154 output_def_head_with_mode_switch: output_def_head
155 music_or_context_def: music_assign
156 | context_def_spec_block
157 output_def_body: output_def_head_with_mode_switch '{'
158 | output_def_body assignment
159 | output_def_body embedded_scm_active
160 | output_def_body SCM_TOKEN
162 output_def_body: output_def_body $ music_or_context_def
163 | output_def_body error
164 tempo_event: "\tempo" steno_duration '=' tempo_range
165 | "\tempo" text steno_duration '=' tempo_range
166 | "\tempo" text
167 music_list: %empty
168 | music_list music_embedded
169 | music_list error
170 braced_music_list: '{' music_list '}'
171 music: music_assign
172 | lyric_element_music
173 | pitch_as_music
174 pitch_as_music: pitch_or_music
175 music_embedded: music
176 | post_event
177 | music_embedded_backup
178 | music_embedded_backup
"(backed-up?)"
lyric_element_music
179 | multiplied_duration post_events
180 music_embedded_backup: embedded_scm
181 music_assign: simple_music
182 | composite_music
183 repeated_music: "\repeat" simple_string unsigned_number music
184 | "\repeat"
simple_string
unsigned_number
music
"\alternative"
braced_music_list
185 sequential_music: "\sequential" braced_music_list
186 | braced_music_list
187 simultaneous_music: "\simultaneous" braced_music_list
188 | "<<" music_list ">>"
189 simple_music: event_chord
190 | music_property_def
191 | context_change
193 context_modification: "\with" $ '{' context_mod_list '}'
194 | "\with" context_modification_arg
195 context_modification_arg: embedded_scm
196 | MUSIC_IDENTIFIER
197 optional_context_mods: context_modification_mods_list
198 context_modification_mods_list: %empty
199 | context_modification_mods_list
context_modification
200 context_mod_list: %empty
201 | context_mod_list context_mod
202 | context_mod_list context_mod_arg
203 context_prefix: "\context" symbol optional_id optional_context_mods
204 | "\new" symbol optional_id optional_context_mods
205 new_lyrics: "\addlyrics" optional_context_mods lyric_mode_music
206 | new_lyrics
"\addlyrics"
optional_context_mods
lyric_mode_music
207 basic_music: music_function_call
208 | repeated_music
209 | music_bare
210 | "\lyricsto" simple_string lyric_mode_music
211 | "\lyricsto" symbol '=' simple_string lyric_mode_music
212 contextable_music: basic_music
213 | pitch_as_music
214 | event_chord
215 contexted_basic_music: context_prefix contextable_music new_lyrics
216 | context_prefix contextable_music
217 | context_prefix contexted_basic_music
218 composite_music: basic_music
219 | contexted_basic_music
220 | basic_music new_lyrics
221 music_bare: mode_changed_music
222 | MUSIC_IDENTIFIER
223 | grouped_music_list
224 grouped_music_list: simultaneous_music
225 | sequential_music
226 symbol_list_arg: SYMBOL_LIST
227 | SYMBOL_LIST '.' symbol_list_rev
228 | SYMBOL_LIST ',' symbol_list_rev
229 symbol_list_rev: symbol_list_part
230 | symbol_list_rev '.' symbol_list_part
231 | symbol_list_rev ',' symbol_list_part
232 symbol_list_part: symbol_list_part_bare
233 | embedded_scm_bare
234 symbol_list_element: STRING
235 | UNSIGNED
236 symbol_list_part_bare: SYMBOL
237 | symbol_list_element
238 function_arglist_nonbackup: function_arglist_common
239 | "optional?"
"scheme?"
function_arglist_nonbackup
post_event_nofinger
240 | "optional?"
"scheme?"
function_arglist_nonbackup
'-'
UNSIGNED
241 | "optional?"
"scheme?"
function_arglist_nonbackup
'-'
REAL
242 | "optional?"
"scheme?"
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
243 | "optional?"
"scheme?"
function_arglist_nonbackup
embedded_scm_arg
244 | "optional?"
"scheme?"
function_arglist_nonbackup
bare_number_common
245 | function_arglist_nonbackup_reparse
"(reparsed?)"
pitch_or_music
246 | function_arglist_nonbackup_reparse
"(reparsed?)"
multiplied_duration
247 | function_arglist_nonbackup_reparse
"(reparsed?)"
reparsed_rhythm
248 | function_arglist_nonbackup_reparse
"(reparsed?)"
bare_number_common
249 | function_arglist_nonbackup_reparse
"(reparsed?)"
SCM_ARG
250 | function_arglist_nonbackup_reparse
"(reparsed?)"
lyric_element_music
251 | function_arglist_nonbackup_reparse
"(reparsed?)"
symbol_list_arg
252 reparsed_rhythm: DURATION_ARG dots multipliers post_events
253 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
SCM_IDENTIFIER
254 | "optional?"
"scheme?"
function_arglist_nonbackup
pitch
255 | "optional?"
"scheme?"
function_arglist_nonbackup
steno_tonic_pitch
256 | "optional?"
"scheme?"
function_arglist_nonbackup
STRING
257 | "optional?"
"scheme?"
function_arglist_nonbackup
SYMBOL
258 | "optional?"
"scheme?"
function_arglist_nonbackup
full_markup
259 | "optional?"
"scheme?"
function_arglist_nonbackup
UNSIGNED
260 | "optional?"
"scheme?"
function_arglist_nonbackup
DURATION_IDENTIFIER
261 function_arglist_backup: function_arglist_common
262 | "optional?"
"scheme?"
function_arglist_backup
embedded_scm_arg
263 | "optional?"
"scheme?"
function_arglist_backup
post_event_nofinger
264 | "optional?"
"scheme?"
function_arglist_backup
pitch
265 | "optional?"
"scheme?"
function_arglist_backup
steno_tonic_pitch
266 | "optional?"
"scheme?"
function_arglist_backup
full_markup
267 | "optional?"
"scheme?"
function_arglist_backup
UNSIGNED
268 | "optional?"
"scheme?"
function_arglist_backup
REAL
269 | "optional?"
"scheme?"
function_arglist_backup
NUMBER_IDENTIFIER
270 | "optional?"
"scheme?"
function_arglist_backup
'-'
UNSIGNED
271 | "optional?"
"scheme?"
function_arglist_backup
'-'
REAL
272 | "optional?"
"scheme?"
function_arglist_backup
'-'
NUMBER_IDENTIFIER
273 | "optional?"
"scheme?"
function_arglist_backup
DURATION_IDENTIFIER
274 | "optional?"
"scheme?"
function_arglist_backup
SCM_IDENTIFIER
275 | "optional?"
"scheme?"
function_arglist_backup
STRING
276 | "optional?"
"scheme?"
function_arglist_backup
SYMBOL
277 | function_arglist_backup
"(reparsed?)"
pitch_or_music
278 | function_arglist_backup
"(reparsed?)"
bare_number_common
279 | function_arglist_backup
"(reparsed?)"
multiplied_duration
280 | function_arglist_backup
"(reparsed?)"
reparsed_rhythm
281 | function_arglist_backup
"(reparsed?)"
symbol_list_arg
282 function_arglist: function_arglist_nonbackup
283 | "optional?"
"scheme?"
function_arglist_skip_nonbackup
"\default"
284 function_arglist_skip_nonbackup: function_arglist_nonbackup
285 | "optional?"
"scheme?"
function_arglist_skip_nonbackup
286 function_arglist_partial: "scheme?" function_arglist_optional
287 | "scheme?" function_arglist_partial_optional
288 | "optional?"
"scheme?"
function_arglist_nonbackup
289 | "optional?"
"scheme?"
function_arglist_partial
290 function_arglist_partial_optional: "scheme?" function_arglist_optional
291 | "scheme?"
function_arglist_partial_optional
292 | "optional?"
"scheme?"
function_arglist_backup
293 | "optional?"
"scheme?"
function_arglist_partial_optional
294 function_arglist_common: EXPECT_NO_MORE_ARGS
295 | "scheme?"
function_arglist_optional
embedded_scm_arg
296 | "scheme?"
function_arglist_optional
bare_number_common
297 | "scheme?"
function_arglist_optional
post_event_nofinger
298 | "scheme?"
function_arglist_optional
'-'
NUMBER_IDENTIFIER
299 | function_arglist_common_reparse
"(reparsed?)"
SCM_ARG
300 | function_arglist_common_reparse
"(reparsed?)"
lyric_element_music
301 | function_arglist_common_reparse
"(reparsed?)"
pitch_or_music
302 | function_arglist_common_reparse
"(reparsed?)"
bare_number_common
303 | function_arglist_common_reparse
"(reparsed?)"
multiplied_duration
304 | function_arglist_common_reparse
"(reparsed?)"
reparsed_rhythm
305 | function_arglist_common_reparse
"(reparsed?)"
symbol_list_arg
306 function_arglist_common_reparse: "scheme?"
function_arglist_optional
SCM_IDENTIFIER
307 | "scheme?"
function_arglist_optional
pitch
308 | "scheme?"
function_arglist_optional
steno_tonic_pitch
309 | "scheme?"
function_arglist_optional
STRING
310 | "scheme?"
function_arglist_optional
SYMBOL
311 | "scheme?"
function_arglist_optional
full_markup
312 | "scheme?"
function_arglist_optional
UNSIGNED
313 | "scheme?"
function_arglist_optional
DURATION_IDENTIFIER
314 | "scheme?"
function_arglist_optional
'-'
UNSIGNED
315 | "scheme?"
function_arglist_optional
'-'
REAL
316 function_arglist_optional: function_arglist_backup
317 | "optional?"
"scheme?"
function_arglist_skip_backup
"\default"
318 | function_arglist_skip_backup "(backed-up?)"
319 function_arglist_skip_backup: function_arglist_backup
320 | "optional?"
"scheme?"
function_arglist_skip_backup
321 music_function_call: MUSIC_FUNCTION function_arglist
322 optional_id: %empty
323 | '=' simple_string
325 lyric_mode_music: $ grouped_music_list
326 | MUSIC_IDENTIFIER
327 mode_changed_music: mode_changing_head grouped_music_list
328 | mode_changing_head_with_context
optional_context_mods
grouped_music_list
329 mode_changing_head: "\notemode"
330 | "\drummode"
331 | "\figuremode"
332 | "\chordmode"
333 | "\lyricmode"
334 mode_changing_head_with_context: "\drums"
335 | "\figures"
336 | "\chords"
337 | "\lyrics"
338 context_change: "\change" symbol '=' simple_string
339 property_path: symbol_list_rev
340 property_operation: symbol '=' scalar
341 | "\unset" symbol
342 | "\override" revert_arg '=' scalar
343 | "\revert" revert_arg
344 revert_arg: revert_arg_backup "(backed-up?)" symbol_list_arg
345 revert_arg_backup: revert_arg_part
346 revert_arg_part: symbol_list_part
347 | revert_arg_backup
"(backed-up?)"
SCM_ARG
'.'
symbol_list_part
348 | revert_arg_backup
"(backed-up?)"
SCM_ARG
','
symbol_list_part
349 | revert_arg_backup
"(backed-up?)"
SCM_ARG
symbol_list_part
350 context_def_mod: "\consists"
351 | "\remove"
352 | "\accepts"
353 | "\defaultchild"
354 | "\denies"
355 | "\alias"
356 | "\type"
357 | "\description"
358 | "\name"
359 context_mod: property_operation
360 | context_def_mod STRING
361 | context_def_mod SYMBOL
362 | context_def_mod embedded_scm
363 grob_prop_spec: symbol_list_rev
364 grob_prop_path: grob_prop_spec
365 | grob_prop_spec property_path
366 context_prop_spec: symbol_list_rev
367 simple_revert_context: symbol_list_part
368 music_property_def: "\override" grob_prop_path '=' scalar
369 | "\revert" simple_revert_context revert_arg
370 | "\set" context_prop_spec '=' scalar
371 | "\unset" context_prop_spec
372 string: STRING
373 | SYMBOL
374 | full_markup
375 text: STRING
376 | SYMBOL
377 | full_markup
378 | embedded_scm_bare
379 simple_string: STRING
380 | SYMBOL
381 | embedded_scm_bare
382 symbol: STRING
383 | SYMBOL
384 | embedded_scm_bare
385 scalar: embedded_scm_arg
386 | pitch_or_music
387 | SCM_IDENTIFIER
388 | bare_number
389 | '-' bare_number
390 | string
391 | symbol_list_part_bare '.' property_path
392 | symbol_list_part_bare ',' property_path
393 event_chord: simple_element post_events
394 | CHORD_REPETITION optional_notemode_duration post_events
395 | MULTI_MEASURE_REST optional_notemode_duration post_events
396 | tempo_event
397 | note_chord_element
398 note_chord_element: chord_body optional_notemode_duration post_events
399 chord_body: "<" chord_body_elements ">"
400 | FIGURE_OPEN figure_list FIGURE_CLOSE
401 chord_body_elements: %empty
402 | chord_body_elements chord_body_element
403 chord_body_element: pitch_or_tonic_pitch
exclamations
questions
octave_check
post_events
404 | DRUM_PITCH post_events
405 | music_function_chord_body
406 | post_event
407 music_function_chord_body: music_function_call
408 | MUSIC_IDENTIFIER
409 | embedded_scm
410 event_function_event: EVENT_FUNCTION function_arglist
411 post_events: %empty
412 | post_events post_event
413 post_event_nofinger: direction_less_event
414 | script_dir music_function_call
415 | "--"
416 | "__"
417 | script_dir direction_reqd_event
418 | script_dir direction_less_event
419 | '^' fingering
420 | '_' fingering
421 post_event: post_event_nofinger
422 | '-' fingering
423 string_number_event: E_UNSIGNED
424 direction_less_event: string_number_event
425 | EVENT_IDENTIFIER
426 | tremolo_type
427 | event_function_event
428 direction_reqd_event: gen_text_def
429 | script_abbreviation
430 octave_check: %empty
431 | '=' quotes
432 quotes: %empty
433 | sub_quotes
434 | sup_quotes
435 sup_quotes: '\''
436 | sup_quotes '\''
437 sub_quotes: ','
438 | sub_quotes ','
439 steno_pitch: NOTENAME_PITCH quotes
440 steno_tonic_pitch: TONICNAME_PITCH quotes
441 pitch: steno_pitch
442 | PITCH_IDENTIFIER quotes
443 pitch_or_tonic_pitch: pitch
444 | steno_tonic_pitch
445 gen_text_def: full_markup
446 | STRING
447 | SYMBOL
448 | embedded_scm
449 fingering: UNSIGNED
450 script_abbreviation: '^'
451 | '+'
452 | '-'
453 | '!'
454 | ">"
455 | '.'
456 | '_'
457 script_dir: '_'
458 | '^'
459 | '-'
460 maybe_notemode_duration: %empty
461 | multiplied_duration
462 optional_notemode_duration: maybe_notemode_duration
463 steno_duration: UNSIGNED dots
464 | DURATION_IDENTIFIER dots
465 multiplied_duration: steno_duration multipliers
466 dots: %empty
467 | dots '.'
468 multipliers: %empty
469 | multipliers '*' UNSIGNED
470 | multipliers '*' FRACTION
471 tremolo_type: ':'
472 | ':' UNSIGNED
473 bass_number: UNSIGNED
474 | STRING
475 | SYMBOL
476 | full_markup
477 | embedded_scm_bare
478 figured_bass_alteration: '-'
479 | '+'
480 | '!'
481 bass_figure: "_"
482 | bass_number
483 | bass_figure ']'
484 | bass_figure figured_bass_alteration
485 | bass_figure figured_bass_modification
486 figured_bass_modification: "\+"
487 | "\!"
488 | '/'
489 | "\"
490 br_bass_figure: bass_figure
491 | '[' bass_figure
492 figure_list: %empty
493 | figure_list br_bass_figure
494 optional_rest: %empty
495 | "\rest"
496 pitch_or_music: pitch
exclamations
questions
octave_check
maybe_notemode_duration
optional_rest
post_events
497 | new_chord post_events
498 simple_element: DRUM_PITCH optional_notemode_duration
499 | RESTNAME optional_notemode_duration
500 lyric_element: full_markup
501 | SYMBOL
502 | STRING
503 | LYRIC_ELEMENT
504 lyric_element_music: lyric_element
optional_notemode_duration
post_events
505 new_chord: steno_tonic_pitch maybe_notemode_duration
506 | steno_tonic_pitch
optional_notemode_duration
chord_separator
chord_items
507 chord_items: %empty
508 | chord_items chord_item
509 chord_separator: ":"
510 | "^"
511 | "/" steno_tonic_pitch
512 | "/+" steno_tonic_pitch
513 chord_item: chord_separator
514 | step_numbers
515 | CHORD_MODIFIER
516 step_numbers: step_number
517 | step_numbers '.' step_number
518 step_number: UNSIGNED
519 | UNSIGNED '+'
520 | UNSIGNED "-"
521 tempo_range: unsigned_number
522 | unsigned_number '-' unsigned_number
523 number_expression: number_expression '+' number_term
524 | number_expression '-' number_term
525 | number_term
526 number_term: number_factor
527 | number_factor '*' number_factor
528 | number_factor '/' number_factor
529 number_factor: '-' number_factor
530 | bare_number
531 bare_number_common: REAL
532 | NUMBER_IDENTIFIER
533 | REAL NUMBER_IDENTIFIER
534 bare_number: bare_number_common
535 | UNSIGNED
536 | UNSIGNED NUMBER_IDENTIFIER
537 unsigned_number: UNSIGNED
538 | NUMBER_IDENTIFIER
539 | embedded_scm
540 exclamations: %empty
541 | exclamations '!'
542 questions: %empty
543 | questions '?'
545 full_markup_list: "\markuplist" $0 markup_list
546 markup_mode: "\markup"
547 markup_mode_word: markup_mode markup_word
548 full_markup: markup_mode markup_top
549 | markup_mode_word
550 partial_markup: markup_mode markup_partial_function "\etc"
551 markup_top: markup_list
552 | markup_head_1_list simple_markup
553 | simple_markup_noword
555 markup_scm: embedded_scm $1 "(backed-up?)"
556 markup_list: markup_composed_list
557 | markup_uncomposed_list
558 markup_uncomposed_list: markup_braced_list
559 | markup_command_list
560 | markup_scm MARKUPLIST_IDENTIFIER
562 markup_uncomposed_list: "\score-lines" $2 '{' score_body '}'
563 markup_composed_list: markup_head_1_list markup_uncomposed_list
564 markup_braced_list: '{' markup_braced_list_body '}'
565 markup_braced_list_body: %empty
566 | markup_braced_list_body markup
567 | markup_braced_list_body markup_list
568 markup_command_list: MARKUP_LIST_FUNCTION markup_command_list_arguments
570 markup_command_embedded_lilypond: '{' $3 embedded_lilypond '}'
571 markup_command_basic_arguments: "markup-list?"
markup_command_list_arguments
markup_list
572 | "scheme?"
markup_command_list_arguments
embedded_scm
573 | "scheme?"
markup_command_list_arguments
markup_command_embedded_lilypond
574 | "scheme?"
markup_command_list_arguments
mode_changed_music
575 | "scheme?"
markup_command_list_arguments
MUSIC_IDENTIFIER
576 | EXPECT_NO_MORE_ARGS
577 markup_command_list_arguments: markup_command_basic_arguments
578 | "markup?"
markup_command_list_arguments
markup
579 markup_partial_function: MARKUP_FUNCTION markup_arglist_partial
580 | markup_head_1_list
MARKUP_FUNCTION
markup_arglist_partial
581 markup_arglist_partial: "markup?" markup_arglist_partial
582 | "scheme?" markup_arglist_partial
583 | "markup?" markup_command_list_arguments
584 | "scheme?" markup_command_list_arguments
585 markup_head_1_item: MARKUP_FUNCTION
"markup?"
markup_command_list_arguments
586 markup_head_1_list: markup_head_1_item
587 | markup_head_1_list markup_head_1_item
588 markup_word: STRING
589 | SYMBOL
590 simple_markup: markup_word
591 | simple_markup_noword
593 simple_markup_noword: "\score" $4 '{' score_body '}'
594 | MARKUP_FUNCTION markup_command_basic_arguments
595 | markup_scm MARKUP_IDENTIFIER
596 markup: markup_head_1_list simple_markup
597 | simple_markup
Terminals, with rules where they appear
255 256 257 258 259 260 262 263 264 265 266 267 268 269 270 271
257 258 259 260 262 263 264 265 266 267 268 269 270 271 272 273
272 273 274 275 276 283 285 286 287 288 289 290 291 292 293 295
274 275 276 283 285 288 289 292 293 317 320
296 297 298 306 307 308 309 310 311 312 313 314 315 317 320 572
299 300 301 302 303 304 305
431
519 520 535 536 537
522 524 529
573 574 575 582 584
"#{" (340) 3
"(backed-up?)" (335) 178 318 344 347 348 349 555
"(reparsed?)" (336) 245 246 247 248 249 250 251 277 278 279 280 281
"-" (320) 520
"--" (268) 415
"/" (321) 511
"/+" (317) 512
":" (319) 509
"<" (322) 399
"<<" (324) 188
">" (323) 399 454
">>" (325) 188
"\!" (327) 487
"\" (326) 489
"\+" (328) 486
"\accepts" (273) 352
"\addlyrics" (262) 205 206
"\alias" (274) 355
"\alternative" (260) 184
"\book" (275) 112
"\bookpart" (276) 126
"\change" (277) 338
"\chordmode" (278) 332
"\chords" (279) 336
"\consists" (280) 350
"\context" (281) 104 203
"\default" (282) 283 317
"\defaultchild" (283) 353
"\denies" (284) 354
"\description" (285) 357
"\drummode" (286) 330
"\drums" (287) 334
"\etc" (288) 90 550
"\figuremode" (289) 331
"\figures" (290) 335
"\header" (291) 62
"\layout" (293) 153
"\lyricmode" (294) 333
"\lyrics" (295) 337
"\lyricsto" (296) 210 211
"\markup" (297) 546
"\markuplist" (298) 545
"\midi" (299) 152
"\name" (300) 358
"\new" (316) 204
"\notemode" (301) 329
"\override" (302) 94 99 342 368
"\paper" (303) 151
"\remove" (304) 351
"\repeat" (259) 183 184
"\rest" (305) 495
"\revert" (306) 343 369
"\score" (307) 139 593
"\score-lines" (308) 562
"\sequential" (309) 185
"\set" (310) 95 100 370
"\simultaneous" (311) 187
"\tempo" (312) 164 165 166
"\type" (313) 356
"\unset" (314) 341 371
"\version-error" (292) 8 57
"\with" (315) 193 194
"^" (318) 510
"_" (331) 481
"__" (269) 416
"end of input" (0) 0
"markup-list?" (337) 571
"markup?" (333) 578 581 583 585
"optional?" (338) 101 102 103 239 240 241 242 243 244 253 254 255 256
"scheme?" (334) 96 97 98 101 102 103 239 240 241 242 243 244 253 254
'!' (33) 453 480 541
'*' (42) 469 470 527
'+' (43) 451 479 519 523
',' (44) 69 74 228 231 348 392 437 438
'-' (45) 47 240 241 242 270 271 272 298 314 315 389 422 452 459 478
'.' (46) 21 68 73 227 230 347 391 455 467 517
'/' (47) 488 528
':' (58) 471 472
'=' (61) 67 68 69 70 94 95 99 100 164 165 211 323 338 340 342 368 370
'?' (63) 543
'[' (91) 491
'\'' (39) 435 436
']' (93) 483
'^' (94) 419 450 458
'_' (95) 420 456 457
'{' (123) 62 104 112 126 139 157 170 193 562 564 570 593
'}' (125) 62 104 112 126 139 150 170 193 562 564 570 593
BOOK_IDENTIFIER (341) 12 114 128
CHORD_MODIFIER (342) 515
CHORD_REPETITION (343) 394
COMPOSITE (261)
DRUM_PITCH (344) 404 498
DURATION_ARG (345) 252
DURATION_IDENTIFIER (270) 260 273 313 464
E_UNSIGNED (265) 423
error (256) 7 56 125 138 141 163 169
EVENT_FUNCTION (267) 92 97 102 410
EVENT_IDENTIFIER (266) 425
EXPECT_NO_MORE_ARGS (339) 294 576
FIGURE_CLOSE (329) 400
FIGURE_OPEN (330) 400
FRACTION (346) 29 84 470
LOOKUP_IDENTIFIER (347) 20 21
LYRIC_ELEMENT (348) 503
MARKUP_FUNCTION (349) 579 580 585 594
MARKUP_IDENTIFIER (351) 595
MARKUP_LIST_FUNCTION (350) 568
MARKUPLIST_IDENTIFIER (352) 560
MULTI_MEASURE_REST (332) 395
MUSIC_FUNCTION (353) 91 96 101 321
MUSIC_IDENTIFIER (354) 196 222 326 408 575
NOTENAME_PITCH (355) 439
NUMBER_IDENTIFIER (271) 49 242 269 272 298 532 533 536 538
PITCH_IDENTIFIER (356) 442
PREC_BOT (258)
PREC_TOP (272)
REAL (264) 241 268 271 315 531 533
RESTNAME (357) 499
SCM_ARG (358) 27 249 299 347 348 349
SCM_FUNCTION (359) 46 93 98 103
SCM_IDENTIFIER (360) 23 24 253 274 306 387
SCM_TOKEN (361) 17 22 28 60 121 134 160
STRING (362) 65 234 256 275 309 360 372 375 379 382 446 474 502 588
SYMBOL (365) 66 236 257 276 310 361 373 376 380 383 447 475 501 589
SYMBOL_LIST (363) 226 227 228
TONICNAME_PITCH (364) 440
UNARY_MINUS (366)
UNSIGNED (263) 49 235 240 259 267 270 312 314 449 463 469 472 473 518
Nonterminals, with rules where they appear
"#{" shift, and go to state 1
"(backed-up?)" shift, and go to state 322
"(backed-up?)" shift, and go to state 570
"(backed-up?)" shift, and go to state 617
"(backed-up?)" shift, and go to state 661
"(reparsed?)" shift, and go to state 382
"(reparsed?)" shift, and go to state 383
"(reparsed?)" shift, and go to state 541
"-" shift, and go to state 836
'+' shift, and go to state 837
"\addlyrics" shift, and go to state 219
"\addlyrics" shift, and go to state 219
"\addlyrics" shift, and go to state 411
"\addlyrics" shift, and go to state 411
"\alternative" shift, and go to state 701
"\default" shift, and go to state 730
"\default" shift, and go to state 812
"\etc" shift, and go to state 309
"\etc" shift, and go to state 503
"\header" reduce using rule 123 ($@4)
"\header" reduce using rule 136 ($@5)
"\header" shift, and go to state 199
"\header" shift, and go to state 199
"\header" shift, and go to state 199
"\header" shift, and go to state 199
"\rest" shift, and go to state 839
"\with" shift, and go to state 96
"end of input" shift, and go to state 5
"markup?" shift, and go to state 416
"scheme?" shift, and go to state 381
"scheme?" shift, and go to state 439
"scheme?" shift, and go to state 479
"scheme?" shift, and go to state 483
"scheme?" shift, and go to state 540
"scheme?" shift, and go to state 620
"scheme?" shift, and go to state 717
"scheme?" shift, and go to state 763
"scheme?" shift, and go to state 798
"scheme?" shift, and go to state 823
"scheme?" shift, and go to state 828
"scheme?" shift, and go to state 866
"scheme?" shift, and go to state 870
"scheme?" shift, and go to state 872
$@1 go to state 4
$@10 go to state 182
$@11 go to state 425
$@12 go to state 415
$@13 go to state 822
$@14 go to state 414
$default accept
$default reduce using rule 10 (toplevel_expression)
$default reduce using rule 100 (partial_function)
$default reduce using rule 101 (partial_function)
$default reduce using rule 102 (partial_function)
$default reduce using rule 103 (partial_function)
$default reduce using rule 104 (context_def_spec_block)
$default reduce using rule 105 (context_mod_arg)
$default reduce using rule 106 ($@3)
$default reduce using rule 106 ($@3)
$default reduce using rule 107 (context_mod_arg)
$default reduce using rule 108 (context_def_spec_body)
$default reduce using rule 109 (context_def_spec_body)
$default reduce using rule 11 (toplevel_expression)
$default reduce using rule 110 (context_def_spec_body)
$default reduce using rule 111 (context_def_spec_body)
$default reduce using rule 112 (book_block)
$default reduce using rule 113 (book_body)
$default reduce using rule 114 (book_body)
$default reduce using rule 115 (book_body)
$default reduce using rule 116 (book_body)
$default reduce using rule 117 (book_body)
$default reduce using rule 118 (book_body)
$default reduce using rule 119 (book_body)
$default reduce using rule 12 (toplevel_expression)
$default reduce using rule 120 (book_body)
$default reduce using rule 121 (book_body)
$default reduce using rule 122 (book_body)
$default reduce using rule 124 (book_body)
$default reduce using rule 125 (book_body)
$default reduce using rule 126 (bookpart_block)
$default reduce using rule 127 (bookpart_body)
$default reduce using rule 128 (bookpart_body)
$default reduce using rule 129 (bookpart_body)
$default reduce using rule 13 (toplevel_expression)
$default reduce using rule 130 (bookpart_body)
$default reduce using rule 131 (bookpart_body)
$default reduce using rule 132 (bookpart_body)
$default reduce using rule 133 (bookpart_body)
$default reduce using rule 134 (bookpart_body)
$default reduce using rule 135 (bookpart_body)
$default reduce using rule 137 (bookpart_body)
$default reduce using rule 138 (bookpart_body)
$default reduce using rule 139 (score_block)
$default reduce using rule 14 (toplevel_expression)
$default reduce using rule 141 (score_body)
$default reduce using rule 142 (score_item)
$default reduce using rule 143 (score_item)
$default reduce using rule 144 (score_item)
$default reduce using rule 145 (score_items)
$default reduce using rule 145 (score_items)
$default reduce using rule 145 (score_items)
$default reduce using rule 146 (score_items)
$default reduce using rule 148 (score_items)
$default reduce using rule 149 (paper_block)
$default reduce using rule 15 (toplevel_expression)
$default reduce using rule 150 (output_def)
$default reduce using rule 151 (output_def_head)
$default reduce using rule 152 (output_def_head)
$default reduce using rule 153 (output_def_head)
$default reduce using rule 154 (output_def_head_with_mode_switch)
$default reduce using rule 155 (music_or_context_def)
$default reduce using rule 156 (music_or_context_def)
$default reduce using rule 157 (output_def_body)
$default reduce using rule 158 (output_def_body)
$default reduce using rule 159 (output_def_body)
$default reduce using rule 16 (toplevel_expression)
$default reduce using rule 160 (output_def_body)
$default reduce using rule 162 (output_def_body)
$default reduce using rule 163 (output_def_body)
$default reduce using rule 164 (tempo_event)
$default reduce using rule 165 (tempo_event)
$default reduce using rule 166 (tempo_event)
$default reduce using rule 167 (music_list)
$default reduce using rule 167 (music_list)
$default reduce using rule 167 (music_list)
$default reduce using rule 168 (music_list)
$default reduce using rule 169 (music_list)
$default reduce using rule 17 (toplevel_expression)
$default reduce using rule 170 (braced_music_list)
$default reduce using rule 171 (music)
$default reduce using rule 172 (music)
$default reduce using rule 173 (music)
$default reduce using rule 174 (pitch_as_music)
$default reduce using rule 175 (music_embedded)
$default reduce using rule 176 (music_embedded)
$default reduce using rule 177 (music_embedded)
$default reduce using rule 178 (music_embedded)
$default reduce using rule 179 (music_embedded)
$default reduce using rule 18 (toplevel_expression)
$default reduce using rule 180 (music_embedded_backup)
$default reduce using rule 181 (music_assign)
$default reduce using rule 182 (music_assign)
$default reduce using rule 183 (repeated_music)
$default reduce using rule 184 (repeated_music)
$default reduce using rule 185 (sequential_music)
$default reduce using rule 186 (sequential_music)
$default reduce using rule 187 (simultaneous_music)
$default reduce using rule 188 (simultaneous_music)
$default reduce using rule 189 (simple_music)
$default reduce using rule 19 (toplevel_expression)
$default reduce using rule 190 (simple_music)
$default reduce using rule 191 (simple_music)
$default reduce using rule 192 ($@8)
$default reduce using rule 193 (context_modification)
$default reduce using rule 194 (context_modification)
$default reduce using rule 195 (context_modification_arg)
$default reduce using rule 196 (context_modification_arg)
$default reduce using rule 197 (optional_context_mods)
$default reduce using rule 198 (context_modification_mods_list)
$default reduce using rule 198 (context_modification_mods_list)
$default reduce using rule 198 (context_modification_mods_list)
$default reduce using rule 198 (context_modification_mods_list)
$default reduce using rule 198 (context_modification_mods_list)
$default reduce using rule 199 (context_modification_mods_list)
$default reduce using rule 2 ($@1)
$default reduce using rule 20 (lookup)
$default reduce using rule 200 (context_mod_list)
$default reduce using rule 201 (context_mod_list)
$default reduce using rule 202 (context_mod_list)
$default reduce using rule 203 (context_prefix)
$default reduce using rule 204 (context_prefix)
$default reduce using rule 205 (new_lyrics)
$default reduce using rule 206 (new_lyrics)
$default reduce using rule 207 (basic_music)
$default reduce using rule 208 (basic_music)
$default reduce using rule 209 (basic_music)
$default reduce using rule 21 (lookup)
$default reduce using rule 210 (basic_music)
$default reduce using rule 211 (basic_music)
$default reduce using rule 212 (contextable_music)
$default reduce using rule 213 (contextable_music)
$default reduce using rule 214 (contextable_music)
$default reduce using rule 215 (contexted_basic_music)
$default reduce using rule 216 (contexted_basic_music)
$default reduce using rule 217 (contexted_basic_music)
$default reduce using rule 218 (composite_music)
$default reduce using rule 219 (composite_music)
$default reduce using rule 22 (embedded_scm_bare)
$default reduce using rule 220 (composite_music)
$default reduce using rule 221 (music_bare)
$default reduce using rule 222 (music_bare)
$default reduce using rule 223 (music_bare)
$default reduce using rule 224 (grouped_music_list)
$default reduce using rule 225 (grouped_music_list)
$default reduce using rule 226 (symbol_list_arg)
$default reduce using rule 227 (symbol_list_arg)
$default reduce using rule 228 (symbol_list_arg)
$default reduce using rule 229 (symbol_list_rev)
$default reduce using rule 23 (embedded_scm_bare)
$default reduce using rule 230 (symbol_list_rev)
$default reduce using rule 231 (symbol_list_rev)
$default reduce using rule 232 (symbol_list_part)
$default reduce using rule 233 (symbol_list_part)
$default reduce using rule 234 (symbol_list_element)
$default reduce using rule 235 (symbol_list_element)
$default reduce using rule 236 (symbol_list_part_bare)
$default reduce using rule 237 (symbol_list_part_bare)
$default reduce using rule 238 (function_arglist_nonbackup)
$default reduce using rule 239 (function_arglist_nonbackup)
$default reduce using rule 24 (embedded_scm_active)
$default reduce using rule 240 (function_arglist_nonbackup)
$default reduce using rule 241 (function_arglist_nonbackup)
$default reduce using rule 242 (function_arglist_nonbackup)
$default reduce using rule 243 (function_arglist_nonbackup)
$default reduce using rule 244 (function_arglist_nonbackup)
$default reduce using rule 245 (function_arglist_nonbackup)
$default reduce using rule 246 (function_arglist_nonbackup)
$default reduce using rule 247 (function_arglist_nonbackup)
$default reduce using rule 248 (function_arglist_nonbackup)
$default reduce using rule 249 (function_arglist_nonbackup)
$default reduce using rule 25 (embedded_scm_active)
$default reduce using rule 250 (function_arglist_nonbackup)
$default reduce using rule 251 (function_arglist_nonbackup)
$default reduce using rule 252 (reparsed_rhythm)
$default reduce using rule 253 (function_arglist_nonbackup_reparse)
$default reduce using rule 254 (function_arglist_nonbackup_reparse)
$default reduce using rule 255 (function_arglist_nonbackup_reparse)
$default reduce using rule 256 (function_arglist_nonbackup_reparse)
$default reduce using rule 257 (function_arglist_nonbackup_reparse)
$default reduce using rule 258 (function_arglist_nonbackup_reparse)
$default reduce using rule 259 (function_arglist_nonbackup_reparse)
$default reduce using rule 26 (embedded_scm_active)
$default reduce using rule 260 (function_arglist_nonbackup_reparse)
$default reduce using rule 261 (function_arglist_backup)
$default reduce using rule 262 (function_arglist_backup)
$default reduce using rule 263 (function_arglist_backup)
$default reduce using rule 264 (function_arglist_backup)
$default reduce using rule 265 (function_arglist_backup)
$default reduce using rule 266 (function_arglist_backup)
$default reduce using rule 267 (function_arglist_backup)
$default reduce using rule 268 (function_arglist_backup)
$default reduce using rule 269 (function_arglist_backup)
$default reduce using rule 27 (embedded_scm_bare_arg)
$default reduce using rule 270 (function_arglist_backup)
$default reduce using rule 271 (function_arglist_backup)
$default reduce using rule 272 (function_arglist_backup)
$default reduce using rule 273 (function_arglist_backup)
$default reduce using rule 274 (function_arglist_backup)
$default reduce using rule 275 (function_arglist_backup)
$default reduce using rule 276 (function_arglist_backup)
$default reduce using rule 277 (function_arglist_backup)
$default reduce using rule 278 (function_arglist_backup)
$default reduce using rule 279 (function_arglist_backup)
$default reduce using rule 28 (embedded_scm_bare_arg)
$default reduce using rule 280 (function_arglist_backup)
$default reduce using rule 281 (function_arglist_backup)
$default reduce using rule 282 (function_arglist)
$default reduce using rule 283 (function_arglist)
$default reduce using rule 285 (function_arglist_skip_nonbackup)
$default reduce using rule 286 (function_arglist_partial)
$default reduce using rule 286 (function_arglist_partial)
$default reduce using rule 286 (function_arglist_partial)
$default reduce using rule 287 (function_arglist_partial)
$default reduce using rule 288 (function_arglist_partial)
$default reduce using rule 288 (function_arglist_partial)
$default reduce using rule 288 (function_arglist_partial)
$default reduce using rule 289 (function_arglist_partial)
$default reduce using rule 29 (embedded_scm_bare_arg)
$default reduce using rule 291 (function_arglist_partial_optional)
$default reduce using rule 293 (function_arglist_partial_optional)
$default reduce using rule 294 (function_arglist_common)
$default reduce using rule 295 (function_arglist_common)
$default reduce using rule 296 (function_arglist_common)
$default reduce using rule 297 (function_arglist_common)
$default reduce using rule 298 (function_arglist_common)
$default reduce using rule 299 (function_arglist_common)
$default reduce using rule 3 (start_symbol)
$default reduce using rule 30 (embedded_scm_bare_arg)
$default reduce using rule 300 (function_arglist_common)
$default reduce using rule 301 (function_arglist_common)
$default reduce using rule 302 (function_arglist_common)
$default reduce using rule 303 (function_arglist_common)
$default reduce using rule 304 (function_arglist_common)
$default reduce using rule 305 (function_arglist_common)
$default reduce using rule 306 (function_arglist_common_reparse)
$default reduce using rule 307 (function_arglist_common_reparse)
$default reduce using rule 308 (function_arglist_common_reparse)
$default reduce using rule 309 (function_arglist_common_reparse)
$default reduce using rule 31 (embedded_scm_bare_arg)
$default reduce using rule 310 (function_arglist_common_reparse)
$default reduce using rule 311 (function_arglist_common_reparse)
$default reduce using rule 312 (function_arglist_common_reparse)
$default reduce using rule 313 (function_arglist_common_reparse)
$default reduce using rule 314 (function_arglist_common_reparse)
$default reduce using rule 315 (function_arglist_common_reparse)
$default reduce using rule 317 (function_arglist_optional)
$default reduce using rule 318 (function_arglist_optional)
$default reduce using rule 32 (embedded_scm_bare_arg)
$default reduce using rule 320 (function_arglist_skip_backup)
$default reduce using rule 320 (function_arglist_skip_backup)
$default reduce using rule 321 (music_function_call)
$default reduce using rule 322 (optional_id)
$default reduce using rule 322 (optional_id)
$default reduce using rule 323 (optional_id)
$default reduce using rule 324 ($@9)
$default reduce using rule 324 ($@9)
$default reduce using rule 324 ($@9)
$default reduce using rule 324 ($@9)
$default reduce using rule 325 (lyric_mode_music)
$default reduce using rule 326 (lyric_mode_music)
$default reduce using rule 327 (mode_changed_music)
$default reduce using rule 328 (mode_changed_music)
$default reduce using rule 329 (mode_changing_head)
$default reduce using rule 33 (embedded_scm_bare_arg)
$default reduce using rule 330 (mode_changing_head)
$default reduce using rule 331 (mode_changing_head)
$default reduce using rule 332 (mode_changing_head)
$default reduce using rule 333 (mode_changing_head)
$default reduce using rule 334 (mode_changing_head_with_context)
$default reduce using rule 335 (mode_changing_head_with_context)
$default reduce using rule 336 (mode_changing_head_with_context)
$default reduce using rule 337 (mode_changing_head_with_context)
$default reduce using rule 338 (context_change)
$default reduce using rule 339 (property_path)
$default reduce using rule 34 (embedded_scm_bare_arg)
$default reduce using rule 340 (property_operation)
$default reduce using rule 341 (property_operation)
$default reduce using rule 342 (property_operation)
$default reduce using rule 343 (property_operation)
$default reduce using rule 344 (revert_arg)
$default reduce using rule 345 (revert_arg_backup)
$default reduce using rule 346 (revert_arg_part)
$default reduce using rule 347 (revert_arg_part)
$default reduce using rule 348 (revert_arg_part)
$default reduce using rule 349 (revert_arg_part)
$default reduce using rule 35 (embedded_scm_bare_arg)
$default reduce using rule 350 (context_def_mod)
$default reduce using rule 351 (context_def_mod)
$default reduce using rule 352 (context_def_mod)
$default reduce using rule 353 (context_def_mod)
$default reduce using rule 354 (context_def_mod)
$default reduce using rule 355 (context_def_mod)
$default reduce using rule 356 (context_def_mod)
$default reduce using rule 357 (context_def_mod)
$default reduce using rule 358 (context_def_mod)
$default reduce using rule 359 (context_mod)
$default reduce using rule 36 (embedded_scm_bare_arg)
$default reduce using rule 360 (context_mod)
$default reduce using rule 361 (context_mod)
$default reduce using rule 362 (context_mod)
$default reduce using rule 363 (grob_prop_spec)
$default reduce using rule 364 (grob_prop_path)
$default reduce using rule 365 (grob_prop_path)
$default reduce using rule 366 (context_prop_spec)
$default reduce using rule 367 (simple_revert_context)
$default reduce using rule 368 (music_property_def)
$default reduce using rule 369 (music_property_def)
$default reduce using rule 37 (embedded_scm_bare_arg)
$default reduce using rule 370 (music_property_def)
$default reduce using rule 371 (music_property_def)
$default reduce using rule 374 (string)
$default reduce using rule 375 (text)
$default reduce using rule 376 (text)
$default reduce using rule 377 (text)
$default reduce using rule 378 (text)
$default reduce using rule 379 (simple_string)
$default reduce using rule 38 (embedded_scm_bare_arg)
$default reduce using rule 380 (simple_string)
$default reduce using rule 381 (simple_string)
$default reduce using rule 382 (symbol)
$default reduce using rule 383 (symbol)
$default reduce using rule 384 (symbol)
$default reduce using rule 385 (scalar)
$default reduce using rule 386 (scalar)
$default reduce using rule 387 (scalar)
$default reduce using rule 388 (scalar)
$default reduce using rule 389 (scalar)
$default reduce using rule 39 (embedded_scm_bare_arg)
$default reduce using rule 390 (scalar)
$default reduce using rule 391 (scalar)
$default reduce using rule 392 (scalar)
$default reduce using rule 393 (event_chord)
$default reduce using rule 394 (event_chord)
$default reduce using rule 395 (event_chord)
$default reduce using rule 396 (event_chord)
$default reduce using rule 397 (event_chord)
$default reduce using rule 398 (note_chord_element)
$default reduce using rule 399 (chord_body)
$default reduce using rule 4 (lilypond)
$default reduce using rule 40 (embedded_scm)
$default reduce using rule 400 (chord_body)
$default reduce using rule 401 (chord_body_elements)
$default reduce using rule 402 (chord_body_elements)
$default reduce using rule 403 (chord_body_element)
$default reduce using rule 404 (chord_body_element)
$default reduce using rule 405 (chord_body_element)
$default reduce using rule 406 (chord_body_element)
$default reduce using rule 407 (music_function_chord_body)
$default reduce using rule 408 (music_function_chord_body)
$default reduce using rule 409 (music_function_chord_body)
$default reduce using rule 41 (embedded_scm)
$default reduce using rule 410 (event_function_event)
$default reduce using rule 411 (post_events)
$default reduce using rule 411 (post_events)
$default reduce using rule 411 (post_events)
$default reduce using rule 411 (post_events)
$default reduce using rule 411 (post_events)
$default reduce using rule 411 (post_events)
$default reduce using rule 411 (post_events)
$default reduce using rule 411 (post_events)
$default reduce using rule 411 (post_events)
$default reduce using rule 411 (post_events)
$default reduce using rule 411 (post_events)
$default reduce using rule 411 (post_events)
$default reduce using rule 411 (post_events)
$default reduce using rule 412 (post_events)
$default reduce using rule 413 (post_event_nofinger)
$default reduce using rule 414 (post_event_nofinger)
$default reduce using rule 415 (post_event_nofinger)
$default reduce using rule 416 (post_event_nofinger)
$default reduce using rule 417 (post_event_nofinger)
$default reduce using rule 418 (post_event_nofinger)
$default reduce using rule 419 (post_event_nofinger)
$default reduce using rule 42 (embedded_scm)
$default reduce using rule 420 (post_event_nofinger)
$default reduce using rule 421 (post_event)
$default reduce using rule 422 (post_event)
$default reduce using rule 423 (string_number_event)
$default reduce using rule 424 (direction_less_event)
$default reduce using rule 425 (direction_less_event)
$default reduce using rule 426 (direction_less_event)
$default reduce using rule 427 (direction_less_event)
$default reduce using rule 428 (direction_reqd_event)
$default reduce using rule 429 (direction_reqd_event)
$default reduce using rule 43 (embedded_scm_arg)
$default reduce using rule 430 (octave_check)
$default reduce using rule 430 (octave_check)
$default reduce using rule 431 (octave_check)
$default reduce using rule 432 (quotes)
$default reduce using rule 432 (quotes)
$default reduce using rule 432 (quotes)
$default reduce using rule 432 (quotes)
$default reduce using rule 433 (quotes)
$default reduce using rule 434 (quotes)
$default reduce using rule 435 (sup_quotes)
$default reduce using rule 436 (sup_quotes)
$default reduce using rule 437 (sub_quotes)
$default reduce using rule 438 (sub_quotes)
$default reduce using rule 439 (steno_pitch)
$default reduce using rule 44 (embedded_scm_arg)
$default reduce using rule 440 (steno_tonic_pitch)
$default reduce using rule 441 (pitch)
$default reduce using rule 442 (pitch)
$default reduce using rule 443 (pitch_or_tonic_pitch)
$default reduce using rule 444 (pitch_or_tonic_pitch)
$default reduce using rule 445 (gen_text_def)
$default reduce using rule 446 (gen_text_def)
$default reduce using rule 447 (gen_text_def)
$default reduce using rule 448 (gen_text_def)
$default reduce using rule 449 (fingering)
$default reduce using rule 449 (fingering)
$default reduce using rule 45 (embedded_scm_arg)
$default reduce using rule 450 (script_abbreviation)
$default reduce using rule 451 (script_abbreviation)
$default reduce using rule 452 (script_abbreviation)
$default reduce using rule 453 (script_abbreviation)
$default reduce using rule 454 (script_abbreviation)
$default reduce using rule 455 (script_abbreviation)
$default reduce using rule 456 (script_abbreviation)
$default reduce using rule 457 (script_dir)
$default reduce using rule 458 (script_dir)
$default reduce using rule 459 (script_dir)
$default reduce using rule 459 (script_dir)
$default reduce using rule 459 (script_dir)
$default reduce using rule 459 (script_dir)
$default reduce using rule 459 (script_dir)
$default reduce using rule 459 (script_dir)
$default reduce using rule 46 (scm_function_call)
$default reduce using rule 460 (maybe_notemode_duration)
$default reduce using rule 460 (maybe_notemode_duration)
$default reduce using rule 460 (maybe_notemode_duration)
$default reduce using rule 460 (maybe_notemode_duration)
$default reduce using rule 460 (maybe_notemode_duration)
$default reduce using rule 460 (maybe_notemode_duration)
$default reduce using rule 460 (maybe_notemode_duration)
$default reduce using rule 460 (maybe_notemode_duration)
$default reduce using rule 461 (maybe_notemode_duration)
$default reduce using rule 462 (optional_notemode_duration)
$default reduce using rule 463 (steno_duration)
$default reduce using rule 464 (steno_duration)
$default reduce using rule 465 (multiplied_duration)
$default reduce using rule 466 (dots)
$default reduce using rule 466 (dots)
$default reduce using rule 466 (dots)
$default reduce using rule 466 (dots)
$default reduce using rule 467 (dots)
$default reduce using rule 468 (multipliers)
$default reduce using rule 468 (multipliers)
$default reduce using rule 469 (multipliers)
$default reduce using rule 47 (embedded_lilypond_number)
$default reduce using rule 470 (multipliers)
$default reduce using rule 471 (tremolo_type)
$default reduce using rule 472 (tremolo_type)
$default reduce using rule 473 (bass_number)
$default reduce using rule 474 (bass_number)
$default reduce using rule 475 (bass_number)
$default reduce using rule 476 (bass_number)
$default reduce using rule 477 (bass_number)
$default reduce using rule 478 (figured_bass_alteration)
$default reduce using rule 479 (figured_bass_alteration)
$default reduce using rule 48 (embedded_lilypond_number)
$default reduce using rule 480 (figured_bass_alteration)
$default reduce using rule 481 (bass_figure)
$default reduce using rule 482 (bass_figure)
$default reduce using rule 483 (bass_figure)
$default reduce using rule 484 (bass_figure)
$default reduce using rule 485 (bass_figure)
$default reduce using rule 486 (figured_bass_modification)
$default reduce using rule 487 (figured_bass_modification)
$default reduce using rule 488 (figured_bass_modification)
$default reduce using rule 489 (figured_bass_modification)
$default reduce using rule 49 (embedded_lilypond_number)
$default reduce using rule 490 (br_bass_figure)
$default reduce using rule 491 (br_bass_figure)
$default reduce using rule 492 (figure_list)
$default reduce using rule 493 (figure_list)
$default reduce using rule 494 (optional_rest)
$default reduce using rule 495 (optional_rest)
$default reduce using rule 496 (pitch_or_music)
$default reduce using rule 497 (pitch_or_music)
$default reduce using rule 498 (simple_element)
$default reduce using rule 499 (simple_element)
$default reduce using rule 5 (lilypond)
$default reduce using rule 500 (lyric_element)
$default reduce using rule 501 (lyric_element)
$default reduce using rule 502 (lyric_element)
$default reduce using rule 503 (lyric_element)
$default reduce using rule 504 (lyric_element_music)
$default reduce using rule 506 (new_chord)
$default reduce using rule 507 (chord_items)
$default reduce using rule 508 (chord_items)
$default reduce using rule 509 (chord_separator)
$default reduce using rule 51 (embedded_lilypond)
$default reduce using rule 510 (chord_separator)
$default reduce using rule 511 (chord_separator)
$default reduce using rule 512 (chord_separator)
$default reduce using rule 513 (chord_item)
$default reduce using rule 514 (chord_item)
$default reduce using rule 515 (chord_item)
$default reduce using rule 516 (step_numbers)
$default reduce using rule 517 (step_numbers)
$default reduce using rule 518 (step_number)
$default reduce using rule 519 (step_number)
$default reduce using rule 52 (embedded_lilypond)
$default reduce using rule 520 (step_number)
$default reduce using rule 521 (tempo_range)
$default reduce using rule 522 (tempo_range)
$default reduce using rule 523 (number_expression)
$default reduce using rule 524 (number_expression)
$default reduce using rule 525 (number_expression)
$default reduce using rule 526 (number_term)
$default reduce using rule 527 (number_term)
$default reduce using rule 528 (number_term)
$default reduce using rule 529 (number_factor)
$default reduce using rule 530 (number_factor)
$default reduce using rule 531 (bare_number_common)
$default reduce using rule 532 (bare_number_common)
$default reduce using rule 533 (bare_number_common)
$default reduce using rule 534 (bare_number)
$default reduce using rule 535 (bare_number)
$default reduce using rule 536 (bare_number)
$default reduce using rule 537 (unsigned_number)
$default reduce using rule 538 (unsigned_number)
$default reduce using rule 539 (unsigned_number)
$default reduce using rule 540 (exclamations)
$default reduce using rule 540 (exclamations)
$default reduce using rule 541 (exclamations)
$default reduce using rule 542 (questions)
$default reduce using rule 542 (questions)
$default reduce using rule 543 (questions)
$default reduce using rule 544 ($@10)
$default reduce using rule 545 (full_markup_list)
$default reduce using rule 546 (markup_mode)
$default reduce using rule 547 (markup_mode_word)
$default reduce using rule 548 (full_markup)
$default reduce using rule 549 (full_markup)
$default reduce using rule 549 (full_markup)
$default reduce using rule 550 (partial_markup)
$default reduce using rule 551 (markup_top)
$default reduce using rule 552 (markup_top)
$default reduce using rule 553 (markup_top)
$default reduce using rule 554 ($@11)
$default reduce using rule 555 (markup_scm)
$default reduce using rule 556 (markup_list)
$default reduce using rule 557 (markup_list)
$default reduce using rule 558 (markup_uncomposed_list)
$default reduce using rule 559 (markup_uncomposed_list)
$default reduce using rule 56 (embedded_lilypond)
$default reduce using rule 560 (markup_uncomposed_list)
$default reduce using rule 561 ($@12)
$default reduce using rule 562 (markup_uncomposed_list)
$default reduce using rule 563 (markup_composed_list)
$default reduce using rule 564 (markup_braced_list)
$default reduce using rule 565 (markup_braced_list_body)
$default reduce using rule 566 (markup_braced_list_body)
$default reduce using rule 567 (markup_braced_list_body)
$default reduce using rule 568 (markup_command_list)
$default reduce using rule 569 ($@13)
$default reduce using rule 57 (embedded_lilypond)
$default reduce using rule 570 (markup_command_embedded_lilypond)
$default reduce using rule 571 (markup_command_basic_arguments)
$default reduce using rule 572 (markup_command_basic_arguments)
$default reduce using rule 573 (markup_command_basic_arguments)
$default reduce using rule 574 (markup_command_basic_arguments)
$default reduce using rule 575 (markup_command_basic_arguments)
$default reduce using rule 576 (markup_command_basic_arguments)
$default reduce using rule 577 (markup_command_list_arguments)
$default reduce using rule 578 (markup_command_list_arguments)
$default reduce using rule 579 (markup_partial_function)
$default reduce using rule 58 (lilypond_header_body)
$default reduce using rule 580 (markup_partial_function)
$default reduce using rule 581 (markup_arglist_partial)
$default reduce using rule 582 (markup_arglist_partial)
$default reduce using rule 583 (markup_arglist_partial)
$default reduce using rule 584 (markup_arglist_partial)
$default reduce using rule 585 (markup_head_1_item)
$default reduce using rule 586 (markup_head_1_list)
$default reduce using rule 587 (markup_head_1_list)
$default reduce using rule 588 (markup_word)
$default reduce using rule 589 (markup_word)
$default reduce using rule 59 (lilypond_header_body)
$default reduce using rule 590 (simple_markup)
$default reduce using rule 591 (simple_markup)
$default reduce using rule 592 ($@14)
$default reduce using rule 593 (simple_markup_noword)
$default reduce using rule 594 (simple_markup_noword)
$default reduce using rule 595 (simple_markup_noword)
$default reduce using rule 596 (markup)
$default reduce using rule 597 (markup)
$default reduce using rule 6 (lilypond)
$default reduce using rule 60 (lilypond_header_body)
$default reduce using rule 61 (lilypond_header_body)
$default reduce using rule 62 (lilypond_header)
$default reduce using rule 63 ($@2)
$default reduce using rule 63 ($@2)
$default reduce using rule 63 ($@2)
$default reduce using rule 63 ($@2)
$default reduce using rule 63 ($@2)
$default reduce using rule 63 ($@2)
$default reduce using rule 63 ($@2)
$default reduce using rule 63 ($@2)
$default reduce using rule 63 ($@2)
$default reduce using rule 64 (header_block)
$default reduce using rule 65 (assignment_id)
$default reduce using rule 66 (assignment_id)
$default reduce using rule 67 (assignment)
$default reduce using rule 68 (assignment)
$default reduce using rule 69 (assignment)
$default reduce using rule 7 (lilypond)
$default reduce using rule 70 (assignment)
$default reduce using rule 71 (identifier_init)
$default reduce using rule 72 (identifier_init)
$default reduce using rule 73 (identifier_init)
$default reduce using rule 74 (identifier_init)
$default reduce using rule 75 (identifier_init)
$default reduce using rule 76 (identifier_init_nonumber)
$default reduce using rule 77 (identifier_init_nonumber)
$default reduce using rule 78 (identifier_init_nonumber)
$default reduce using rule 79 (identifier_init_nonumber)
$default reduce using rule 8 (lilypond)
$default reduce using rule 80 (identifier_init_nonumber)
$default reduce using rule 81 (identifier_init_nonumber)
$default reduce using rule 82 (identifier_init_nonumber)
$default reduce using rule 83 (identifier_init_nonumber)
$default reduce using rule 84 (identifier_init_nonumber)
$default reduce using rule 85 (identifier_init_nonumber)
$default reduce using rule 86 (identifier_init_nonumber)
$default reduce using rule 87 (identifier_init_nonumber)
$default reduce using rule 88 (identifier_init_nonumber)
$default reduce using rule 89 (identifier_init_nonumber)
$default reduce using rule 9 (toplevel_expression)
$default reduce using rule 90 (identifier_init_nonumber)
$default reduce using rule 91 (partial_function)
$default reduce using rule 92 (partial_function)
$default reduce using rule 93 (partial_function)
$default reduce using rule 94 (partial_function)
$default reduce using rule 95 (partial_function)
$default reduce using rule 96 (partial_function)
$default reduce using rule 97 (partial_function)
$default reduce using rule 98 (partial_function)
$default reduce using rule 99 (partial_function)
'!' shift, and go to state 495
'!' shift, and go to state 495
'*' shift, and go to state 497
'*' shift, and go to state 497
'*' shift, and go to state 601
'/' shift, and go to state 602
',' shift, and go to state 295
'\'' shift, and go to state 296
',' shift, and go to state 295
'\'' shift, and go to state 296
',' shift, and go to state 295
'\'' shift, and go to state 296
',' shift, and go to state 295
'\'' shift, and go to state 296
',' shift, and go to state 481
'-' shift, and go to state 599
'+' shift, and go to state 600
'-' shift, and go to state 781
'.' shift, and go to state 188
'.' shift, and go to state 434
'.' shift, and go to state 434
'.' shift, and go to state 434
'.' shift, and go to state 442
',' shift, and go to state 443
'.' shift, and go to state 442
',' shift, and go to state 443
'.' shift, and go to state 442
',' shift, and go to state 443
'.' shift, and go to state 442
',' shift, and go to state 443
'.' shift, and go to state 442
',' shift, and go to state 443
'.' shift, and go to state 442
',' shift, and go to state 443
'.' shift, and go to state 596
',' shift, and go to state 597
'.' shift, and go to state 732
',' shift, and go to state 733
'.' shift, and go to state 776
',' shift, and go to state 777
'.' shift, and go to state 838
'=' shift, and go to state 243
'=' shift, and go to state 243
'=' shift, and go to state 359
'=' shift, and go to state 359
'=' shift, and go to state 364
'=' shift, and go to state 440
'=' shift, and go to state 445
'=' shift, and go to state 450
'=' shift, and go to state 452
'=' shift, and go to state 591
'=' shift, and go to state 603
'=' shift, and go to state 664
'=' shift, and go to state 685
'=' shift, and go to state 686
'=' shift, and go to state 690
'?' shift, and go to state 691
'=' shift, and go to state 690
'?' shift, and go to state 691
'=' shift, and go to state 772
'=' shift, and go to state 825
'=' shift, and go to state 867
'=' shift, and go to state 868
'\'' shift, and go to state 480
'{' shift, and go to state 171
'{' shift, and go to state 172
'{' shift, and go to state 183
'{' shift, and go to state 204
'{' shift, and go to state 385
'{' shift, and go to state 41
'{' shift, and go to state 41
'{' shift, and go to state 41
'{' shift, and go to state 453
'{' shift, and go to state 606
'{' shift, and go to state 607
'}' shift, and go to state 859
0 $accept: . start_symbol "end of input"
0 $accept: start_symbol "end of input" .
0 $accept: start_symbol . "end of input"
3 start_symbol: "#{" $@1 . embedded_lilypond
3 start_symbol: "#{" $@1 embedded_lilypond .
3 start_symbol: "#{" . $@1 embedded_lilypond
5 lilypond: lilypond toplevel_expression .
6 lilypond: lilypond assignment .
7 lilypond: lilypond error .
8 lilypond: lilypond "\version-error" .
9 toplevel_expression: header_block .
book_body go to state 356
BOOK_IDENTIFIER shift, and go to state 355
BOOK_IDENTIFIER shift, and go to state 357
bookpart_body go to state 358
braced_music_list go to state 184
braced_music_list go to state 185
braced_music_list go to state 797
chord_body_elements go to state 285
chord_items go to state 689
chord_separator go to state 494
context_def_spec_body go to state 441
context_mod_list go to state 667
context_modification go to state 413
dots go to state 246
dots go to state 246
dots go to state 255
dots go to state 731
error shift, and go to state 532
'}' shift, and go to state 533
error shift, and go to state 532
'}' shift, and go to state 820
error shift, and go to state 532
'}' shift, and go to state 821
exclamations go to state 326
exclamations go to state 669
figure_list go to state 286
fingering go to state 253
fingering go to state 254
fingering go to state 308
function_arglist_partial go to state 251
function_arglist_partial go to state 294
function_arglist_partial go to state 304
lilypond_header go to state 200
lilypond_header go to state 702
lilypond_header go to state 703
lilypond_header go to state 705
lilypond_header_body go to state 590
lyric_mode_music go to state 362
$@9 go to state 363
lyric_mode_music go to state 604
$@9 go to state 363
lyric_mode_music go to state 704
$@9 go to state 363
lyric_mode_music go to state 746
$@9 go to state 363
markup_braced_list_body go to state 424
markup_command_basic_arguments go to state 420
MARKUP_IDENTIFIER shift, and go to state 426
markup_word go to state 241
MARKUPLIST_IDENTIFIER shift, and go to state 427
multipliers go to state 343
multipliers go to state 817
MUSIC_IDENTIFIER shift, and go to state 361
MUSIC_IDENTIFIER shift, and go to state 361
MUSIC_IDENTIFIER shift, and go to state 361
MUSIC_IDENTIFIER shift, and go to state 361
music_list go to state 187
music_list go to state 198
music_list go to state 486
new_lyrics go to state 220
new_lyrics go to state 409
NUMBER_IDENTIFIER shift, and go to state 245
NUMBER_IDENTIFIER shift, and go to state 245
NUMBER_IDENTIFIER shift, and go to state 247
NUMBER_IDENTIFIER shift, and go to state 592
NUMBER_IDENTIFIER shift, and go to state 592
octave_check go to state 692
octave_check go to state 835
optional_id go to state 360
optional_id go to state 371
optional_rest go to state 840
partial_function go to state 621
partial_function go to state 655
partial_function go to state 662
partial_function go to state 681
partial_function go to state 683
partial_function go to state 764
partial_function go to state 786
partial_function go to state 787
post_events go to state 344
post_events go to state 345
post_events go to state 347
post_events go to state 476
post_events go to state 477
post_events go to state 487
post_events go to state 489
post_events go to state 499
post_events go to state 598
post_events go to state 668
post_events go to state 845
post_events go to state 856
post_events go to state 858
questions go to state 496
questions go to state 785
score_body go to state 369
score_items go to state 370
score_body go to state 747
score_items go to state 370
score_body go to state 748
score_items go to state 370
start_symbol go to state 2
lilypond go to state 3
steno_duration go to state 451
steno_tonic_pitch go to state 687
steno_tonic_pitch go to state 688
step_number go to state 857
symbol_list_arg go to state 779
TONICNAME_PITCH shift, and go to state 112
TONICNAME_PITCH shift, and go to state 112
UNSIGNED shift, and go to state 244
UNSIGNED shift, and go to state 252
UNSIGNED shift, and go to state 252
UNSIGNED shift, and go to state 252
UNSIGNED shift, and go to state 788
10 toplevel_expression: book_block .
11 toplevel_expression: bookpart_block .
12 toplevel_expression: BOOK_IDENTIFIER .
13 toplevel_expression: score_block .
14 toplevel_expression: composite_music .
15 toplevel_expression: full_markup .
16 toplevel_expression: full_markup_list .
17 toplevel_expression: SCM_TOKEN .
18 toplevel_expression: embedded_scm_active .
19 toplevel_expression: output_def .
20 lookup: LOOKUP_IDENTIFIER .
21 | LOOKUP_IDENTIFIER . '.' symbol_list_rev
21 lookup: LOOKUP_IDENTIFIER '.' . symbol_list_rev
21 lookup: LOOKUP_IDENTIFIER '.' symbol_list_rev .
22 embedded_scm_bare: SCM_TOKEN .
23 embedded_scm_bare: SCM_IDENTIFIER .
24 embedded_scm_active: SCM_IDENTIFIER .
25 embedded_scm_active: scm_function_call .
26 embedded_scm_active: lookup .
27 embedded_scm_bare_arg: SCM_ARG .
28 embedded_scm_bare_arg: SCM_TOKEN .
29 embedded_scm_bare_arg: FRACTION .
30 embedded_scm_bare_arg: partial_markup .
31 embedded_scm_bare_arg: full_markup_list .
32 embedded_scm_bare_arg: context_modification .
33 embedded_scm_bare_arg: header_block .
34 embedded_scm_bare_arg: score_block .
35 embedded_scm_bare_arg: context_def_spec_block .
36 embedded_scm_bare_arg: book_block .
37 embedded_scm_bare_arg: bookpart_block .
38 embedded_scm_bare_arg: output_def .
39 embedded_scm_bare_arg: lookup .
40 embedded_scm: embedded_scm_bare .
40 embedded_scm: embedded_scm_bare .
41 embedded_scm: scm_function_call .
42 embedded_scm: lookup .
43 embedded_scm_arg: embedded_scm_bare_arg .
44 embedded_scm_arg: scm_function_call .
45 embedded_scm_arg: music_assign .
46 scm_function_call: SCM_FUNCTION . function_arglist
46 scm_function_call: SCM_FUNCTION . function_arglist
46 scm_function_call: SCM_FUNCTION function_arglist .
47 embedded_lilypond_number: '-' . embedded_lilypond_number
47 embedded_lilypond_number: '-' embedded_lilypond_number .
48 embedded_lilypond_number: bare_number_common .
49 embedded_lilypond_number: UNSIGNED . NUMBER_IDENTIFIER
49 embedded_lilypond_number: UNSIGNED . NUMBER_IDENTIFIER
49 embedded_lilypond_number: UNSIGNED NUMBER_IDENTIFIER .
51 embedded_lilypond: identifier_init_nonumber .
52 embedded_lilypond: embedded_lilypond_number .
53 embedded_lilypond: post_event .
54 embedded_lilypond: multiplied_duration . post_events
54 embedded_lilypond: multiplied_duration post_events .
55 embedded_lilypond: music_embedded . music_embedded music_list
55 embedded_lilypond: music_embedded music_embedded . music_list
55 embedded_lilypond: music_embedded music_embedded music_list .
56 embedded_lilypond: error .
57 embedded_lilypond: "\version-error" . embedded_lilypond
57 embedded_lilypond: "\version-error" embedded_lilypond .
59 lilypond_header_body: lilypond_header_body . assignment
59 lilypond_header_body: lilypond_header_body assignment .
60 | lilypond_header_body . SCM_TOKEN
60 lilypond_header_body: lilypond_header_body SCM_TOKEN .
61 | lilypond_header_body . embedded_scm_active
61 lilypond_header_body: lilypond_header_body embedded_scm_active .
62 lilypond_header: "\header" '{' . lilypond_header_body '}'
62 lilypond_header: "\header" '{' lilypond_header_body '}' .
62 lilypond_header: "\header" '{' lilypond_header_body . '}'
62 lilypond_header: "\header" . '{' lilypond_header_body '}'
64 header_block: $@2 . lilypond_header
64 header_block: $@2 lilypond_header .
65 assignment_id: STRING .
66 assignment_id: SYMBOL .
67 assignment: assignment_id '=' . identifier_init
67 assignment: assignment_id '=' identifier_init .
67 assignment: assignment_id . '=' identifier_init
68 | assignment_id . '.' property_path '=' identifier_init
68 assignment: assignment_id '.' . property_path '=' identifier_init
68 assignment: assignment_id '.' property_path '=' . identifier_init
68 assignment: assignment_id '.' property_path '=' identifier_init .
68 assignment: assignment_id '.' property_path . '=' identifier_init
69 | assignment_id . ',' property_path '=' identifier_init
69 assignment: assignment_id ',' . property_path '=' identifier_init
69 assignment: assignment_id ',' property_path '=' . identifier_init
69 assignment: assignment_id ',' property_path '=' identifier_init .
69 assignment: assignment_id ',' property_path . '=' identifier_init
70 assignment: markup_mode_word '=' . identifier_init
70 assignment: markup_mode_word '=' identifier_init .
70 assignment: markup_mode_word . '=' identifier_init
70 assignment: markup_mode_word . '=' identifier_init
71 identifier_init: identifier_init_nonumber .
72 identifier_init: number_expression .
73 identifier_init: symbol_list_part_bare '.' . property_path
73 identifier_init: symbol_list_part_bare '.' property_path .
73 identifier_init: symbol_list_part_bare . '.' property_path
74 | symbol_list_part_bare . ',' property_path
74 identifier_init: symbol_list_part_bare ',' . property_path
74 identifier_init: symbol_list_part_bare ',' property_path .
75 identifier_init: post_event_nofinger . post_events
75 identifier_init: post_event_nofinger post_events .
76 identifier_init_nonumber: header_block .
77 identifier_init_nonumber: score_block .
78 identifier_init_nonumber: book_block .
79 identifier_init_nonumber: bookpart_block .
80 identifier_init_nonumber: output_def .
81 identifier_init_nonumber: context_def_spec_block .
82 identifier_init_nonumber: music_assign .
82 identifier_init_nonumber: music_assign .
83 identifier_init_nonumber: pitch_or_music .
83 identifier_init_nonumber: pitch_or_music .
84 identifier_init_nonumber: FRACTION .
85 identifier_init_nonumber: string .
86 identifier_init_nonumber: embedded_scm .
86 identifier_init_nonumber: embedded_scm .
87 identifier_init_nonumber: partial_markup .
88 identifier_init_nonumber: full_markup_list .
89 identifier_init_nonumber: context_modification .
90 identifier_init_nonumber: partial_function "\etc" .
90 identifier_init_nonumber: partial_function . "\etc"
91 partial_function: MUSIC_FUNCTION . function_arglist_partial
91 partial_function: MUSIC_FUNCTION . function_arglist_partial
91 partial_function: MUSIC_FUNCTION function_arglist_partial .
92 partial_function: EVENT_FUNCTION . function_arglist_partial
92 partial_function: EVENT_FUNCTION . function_arglist_partial
92 partial_function: EVENT_FUNCTION function_arglist_partial .
93 partial_function: SCM_FUNCTION . function_arglist_partial
93 partial_function: SCM_FUNCTION . function_arglist_partial
93 partial_function: SCM_FUNCTION function_arglist_partial .
94 partial_function: "\override" . grob_prop_path '='
94 partial_function: "\override" . grob_prop_path '='
94 partial_function: "\override" grob_prop_path '=' .
94 partial_function: "\override" grob_prop_path '=' .
94 partial_function: "\override" grob_prop_path . '='
94 partial_function: "\override" grob_prop_path . '='
95 partial_function: "\set" . context_prop_spec '='
95 partial_function: "\set" . context_prop_spec '='
95 partial_function: "\set" context_prop_spec '=' .
95 partial_function: "\set" context_prop_spec '=' .
95 partial_function: "\set" context_prop_spec . '='
95 partial_function: "\set" context_prop_spec . '='
96 | MUSIC_FUNCTION
.
"scheme?"
function_arglist_optional
partial_function
96 | MUSIC_FUNCTION
.
"scheme?"
function_arglist_optional
partial_function
96 partial_function: MUSIC_FUNCTION
"scheme?"
.
function_arglist_optional
partial_function
96 partial_function: MUSIC_FUNCTION
"scheme?"
.
function_arglist_optional
partial_function
96 partial_function: MUSIC_FUNCTION
"scheme?"
function_arglist_optional
.
partial_function
96 partial_function: MUSIC_FUNCTION
"scheme?"
function_arglist_optional
.
partial_function
96 partial_function: MUSIC_FUNCTION
"scheme?"
function_arglist_optional
partial_function
.
97 | EVENT_FUNCTION
.
"scheme?"
function_arglist_optional
partial_function
97 | EVENT_FUNCTION
.
"scheme?"
function_arglist_optional
partial_function
97 partial_function: EVENT_FUNCTION
"scheme?"
.
function_arglist_optional
partial_function
97 partial_function: EVENT_FUNCTION
"scheme?"
.
function_arglist_optional
partial_function
97 partial_function: EVENT_FUNCTION
"scheme?"
function_arglist_optional
.
partial_function
97 partial_function: EVENT_FUNCTION
"scheme?"
function_arglist_optional
.
partial_function
97 partial_function: EVENT_FUNCTION
"scheme?"
function_arglist_optional
partial_function
.
98 | SCM_FUNCTION
.
"scheme?"
function_arglist_optional
partial_function
98 | SCM_FUNCTION
.
"scheme?"
function_arglist_optional
partial_function
98 partial_function: SCM_FUNCTION
"scheme?"
.
function_arglist_optional
partial_function
98 partial_function: SCM_FUNCTION
"scheme?"
.
function_arglist_optional
partial_function
98 partial_function: SCM_FUNCTION
"scheme?"
function_arglist_optional
.
partial_function
98 partial_function: SCM_FUNCTION
"scheme?"
function_arglist_optional
.
partial_function
98 partial_function: SCM_FUNCTION
"scheme?"
function_arglist_optional
partial_function
.
99 | "\override" . grob_prop_path '=' partial_function
99 | "\override" . grob_prop_path '=' partial_function
99 | "\override" grob_prop_path '=' . partial_function
99 | "\override" grob_prop_path '=' . partial_function
99 | "\override" grob_prop_path . '=' partial_function
99 | "\override" grob_prop_path . '=' partial_function
99 partial_function: "\override" grob_prop_path '=' partial_function .
100 | "\set" . context_prop_spec '=' partial_function
100 | "\set" . context_prop_spec '=' partial_function
100 | "\set" context_prop_spec '=' . partial_function
100 | "\set" context_prop_spec '=' . partial_function
100 | "\set" context_prop_spec . '=' partial_function
100 | "\set" context_prop_spec . '=' partial_function
100 partial_function: "\set" context_prop_spec '=' partial_function .
101 | MUSIC_FUNCTION
.
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
101 | MUSIC_FUNCTION
.
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
101 partial_function: MUSIC_FUNCTION
"optional?"
"scheme?"
.
function_arglist_nonbackup
partial_function
101 partial_function: MUSIC_FUNCTION
"optional?"
"scheme?"
.
function_arglist_nonbackup
partial_function
101 partial_function: MUSIC_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
.
partial_function
101 partial_function: MUSIC_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
.
partial_function
101 partial_function: MUSIC_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
.
101 partial_function: MUSIC_FUNCTION
"optional?"
.
"scheme?"
function_arglist_nonbackup
partial_function
101 partial_function: MUSIC_FUNCTION
"optional?"
.
"scheme?"
function_arglist_nonbackup
partial_function
102 | EVENT_FUNCTION
.
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
102 | EVENT_FUNCTION
.
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
102 partial_function: EVENT_FUNCTION
"optional?"
"scheme?"
.
function_arglist_nonbackup
partial_function
102 partial_function: EVENT_FUNCTION
"optional?"
"scheme?"
.
function_arglist_nonbackup
partial_function
102 partial_function: EVENT_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
.
partial_function
102 partial_function: EVENT_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
.
partial_function
102 partial_function: EVENT_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
.
102 partial_function: EVENT_FUNCTION
"optional?"
.
"scheme?"
function_arglist_nonbackup
partial_function
102 partial_function: EVENT_FUNCTION
"optional?"
.
"scheme?"
function_arglist_nonbackup
partial_function
103 | SCM_FUNCTION
.
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
103 | SCM_FUNCTION
.
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
103 partial_function: SCM_FUNCTION
"optional?"
"scheme?"
.
function_arglist_nonbackup
partial_function
103 partial_function: SCM_FUNCTION
"optional?"
"scheme?"
.
function_arglist_nonbackup
partial_function
103 partial_function: SCM_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
.
partial_function
103 partial_function: SCM_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
.
partial_function
103 partial_function: SCM_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
.
103 partial_function: SCM_FUNCTION
"optional?"
.
"scheme?"
function_arglist_nonbackup
partial_function
103 partial_function: SCM_FUNCTION
"optional?"
.
"scheme?"
function_arglist_nonbackup
partial_function
104 context_def_spec_block: "\context" '{' . context_def_spec_body '}'
104 context_def_spec_block: "\context" '{' context_def_spec_body '}' .
104 context_def_spec_block: "\context" '{' context_def_spec_body . '}'
104 context_def_spec_block: "\context" . '{' context_def_spec_body '}'
105 context_mod_arg: embedded_scm .
107 context_mod_arg: $@3 . composite_music
107 context_mod_arg: $@3 composite_music .
109 context_def_spec_body: context_def_spec_body . context_mod
109 context_def_spec_body: context_def_spec_body context_mod .
110 | context_def_spec_body . context_modification
110 context_def_spec_body: context_def_spec_body context_modification .
111 | context_def_spec_body . context_mod_arg
111 context_def_spec_body: context_def_spec_body context_mod_arg .
112 book_block: "\book" '{' . book_body '}'
112 book_block: "\book" '{' book_body '}' .
112 book_block: "\book" '{' book_body . '}'
112 book_block: "\book" . '{' book_body '}'
114 book_body: BOOK_IDENTIFIER .
115 book_body: book_body . paper_block
115 book_body: book_body paper_block .
116 | book_body . bookpart_block
116 book_body: book_body bookpart_block .
117 | book_body . score_block
117 book_body: book_body score_block .
118 | book_body . composite_music
118 book_body: book_body composite_music .
119 | book_body . full_markup
119 book_body: book_body full_markup .
120 | book_body . full_markup_list
120 book_body: book_body full_markup_list .
121 | book_body . SCM_TOKEN
121 book_body: book_body SCM_TOKEN .
122 | book_body . embedded_scm_active
122 book_body: book_body embedded_scm_active .
124 | book_body . $@4 lilypond_header
124 book_body: book_body $@4 . lilypond_header
124 book_body: book_body $@4 lilypond_header .
125 | book_body . error
125 book_body: book_body error .
126 bookpart_block: "\bookpart" '{' . bookpart_body '}'
126 bookpart_block: "\bookpart" '{' bookpart_body '}' .
126 bookpart_block: "\bookpart" '{' bookpart_body . '}'
126 bookpart_block: "\bookpart" . '{' bookpart_body '}'
128 bookpart_body: BOOK_IDENTIFIER .
129 bookpart_body: bookpart_body . paper_block
129 bookpart_body: bookpart_body paper_block .
130 | bookpart_body . score_block
130 bookpart_body: bookpart_body score_block .
131 | bookpart_body . composite_music
131 bookpart_body: bookpart_body composite_music .
132 | bookpart_body . full_markup
132 bookpart_body: bookpart_body full_markup .
133 | bookpart_body . full_markup_list
133 bookpart_body: bookpart_body full_markup_list .
134 | bookpart_body . SCM_TOKEN
134 bookpart_body: bookpart_body SCM_TOKEN .
135 | bookpart_body . embedded_scm_active
135 bookpart_body: bookpart_body embedded_scm_active .
137 | bookpart_body . $@5 lilypond_header
137 bookpart_body: bookpart_body $@5 . lilypond_header
137 bookpart_body: bookpart_body $@5 lilypond_header .
138 | bookpart_body . error
138 bookpart_body: bookpart_body error .
139 score_block: "\score" '{' . score_body '}'
139 score_block: "\score" '{' score_body '}' .
139 score_block: "\score" '{' score_body . '}'
139 score_block: "\score" . '{' score_body '}'
140 score_body: score_items .
141 score_body: score_body . error
141 score_body: score_body . error
141 score_body: score_body . error
141 score_body: score_body error .
142 score_item: embedded_scm .
143 score_item: music .
144 score_item: output_def .
146 score_items: score_items . score_item
146 score_items: score_items score_item .
148 | score_items . $@6 lilypond_header
148 score_items: score_items $@6 . lilypond_header
148 score_items: score_items $@6 lilypond_header .
149 paper_block: output_def .
150 output_def: output_def_body '}' .
150 output_def: output_def_body . '}'
151 output_def_head: "\paper" .
152 output_def_head: "\midi" .
153 output_def_head: "\layout" .
154 output_def_head_with_mode_switch: output_def_head .
155 music_or_context_def: music_assign .
156 music_or_context_def: context_def_spec_block .
157 output_def_body: output_def_head_with_mode_switch '{' .
157 output_def_body: output_def_head_with_mode_switch . '{'
158 output_def_body: output_def_body . assignment
158 output_def_body: output_def_body assignment .
159 | output_def_body . embedded_scm_active
159 output_def_body: output_def_body embedded_scm_active .
160 | output_def_body . SCM_TOKEN
160 output_def_body: output_def_body SCM_TOKEN .
162 | output_def_body . $@7 music_or_context_def
162 output_def_body: output_def_body $@7 . music_or_context_def
162 output_def_body: output_def_body $@7 music_or_context_def .
163 | output_def_body . error
163 output_def_body: output_def_body error .
164 tempo_event: "\tempo" . steno_duration '=' tempo_range
164 tempo_event: "\tempo" steno_duration '=' . tempo_range
164 tempo_event: "\tempo" steno_duration '=' tempo_range .
164 tempo_event: "\tempo" steno_duration . '=' tempo_range
165 | "\tempo" . text steno_duration '=' tempo_range
165 tempo_event: "\tempo" text . steno_duration '=' tempo_range
165 tempo_event: "\tempo" text steno_duration '=' . tempo_range
165 tempo_event: "\tempo" text steno_duration '=' tempo_range .
165 tempo_event: "\tempo" text steno_duration . '=' tempo_range
166 | "\tempo" . text
166 | "\tempo" text .
168 music_list: music_list . music_embedded
168 music_list: music_list . music_embedded
168 music_list: music_list . music_embedded
168 music_list: music_list music_embedded .
169 | music_list . error
169 | music_list . error
169 | music_list . error
169 music_list: music_list error .
170 braced_music_list: '{' . music_list '}'
170 braced_music_list: '{' music_list '}' .
170 braced_music_list: '{' music_list . '}'
171 music: music_assign .
171 music: music_assign .
172 music: lyric_element_music .
173 music: pitch_as_music .
174 pitch_as_music: pitch_or_music .
174 pitch_as_music: pitch_or_music .
175 music_embedded: music .
176 music_embedded: post_event .
176 music_embedded: post_event .
177 music_embedded: music_embedded_backup .
178 | music_embedded_backup
.
"(backed-up?)"
lyric_element_music
178 music_embedded: music_embedded_backup
"(backed-up?)"
.
lyric_element_music
178 music_embedded: music_embedded_backup
"(backed-up?)"
lyric_element_music
.
179 music_embedded: multiplied_duration . post_events
179 music_embedded: multiplied_duration . post_events
179 music_embedded: multiplied_duration post_events .
179 music_embedded: multiplied_duration post_events .
180 music_embedded_backup: embedded_scm .
180 music_embedded_backup: embedded_scm .
181 music_assign: simple_music .
182 music_assign: composite_music .
183 repeated_music: "\repeat" . simple_string unsigned_number music
183 repeated_music: "\repeat" simple_string . unsigned_number music
183 repeated_music: "\repeat" simple_string unsigned_number . music
183 repeated_music: "\repeat" simple_string unsigned_number music .
184 | "\repeat"
.
simple_string
unsigned_number
music
"\alternative"
braced_music_list
184 | "\repeat"
simple_string
.
unsigned_number
music
"\alternative"
braced_music_list
184 | "\repeat"
simple_string
unsigned_number
.
music
"\alternative"
braced_music_list
184 | "\repeat"
simple_string
unsigned_number
music
.
"\alternative"
braced_music_list
184 repeated_music: "\repeat"
simple_string
unsigned_number
music
"\alternative"
.
braced_music_list
184 repeated_music: "\repeat"
simple_string
unsigned_number
music
"\alternative"
braced_music_list
.
185 sequential_music: "\sequential" . braced_music_list
185 sequential_music: "\sequential" braced_music_list .
186 sequential_music: braced_music_list .
187 simultaneous_music: "\simultaneous" . braced_music_list
187 simultaneous_music: "\simultaneous" braced_music_list .
188 simultaneous_music: "<<" . music_list ">>"
188 simultaneous_music: "<<" music_list ">>" .
188 simultaneous_music: "<<" music_list . ">>"
189 simple_music: event_chord .
190 simple_music: music_property_def .
191 simple_music: context_change .
193 context_modification: "\with" $@8 '{' . context_mod_list '}'
193 context_modification: "\with" $@8 '{' context_mod_list '}' .
193 context_modification: "\with" $@8 '{' context_mod_list . '}'
193 context_modification: "\with" $@8 . '{' context_mod_list '}'
193 context_modification: "\with" . $@8 '{' context_mod_list '}'
194 | "\with" . context_modification_arg
194 context_modification: "\with" context_modification_arg .
195 context_modification_arg: embedded_scm .
196 context_modification_arg: MUSIC_IDENTIFIER .
197 optional_context_mods: context_modification_mods_list .
199 context_modification_mods_list: context_modification_mods_list
.
context_modification
199 context_modification_mods_list: context_modification_mods_list
context_modification
.
201 context_mod_list: context_mod_list . context_mod
201 context_mod_list: context_mod_list context_mod .
202 | context_mod_list . context_mod_arg
202 context_mod_list: context_mod_list context_mod_arg .
203 context_prefix: "\context" . symbol optional_id optional_context_mods
203 context_prefix: "\context" . symbol optional_id optional_context_mods
203 context_prefix: "\context" symbol . optional_id optional_context_mods
203 context_prefix: "\context" symbol optional_id . optional_context_mods
203 context_prefix: "\context" symbol optional_id optional_context_mods .
204 context_prefix: "\new" . symbol optional_id optional_context_mods
204 context_prefix: "\new" symbol . optional_id optional_context_mods
204 context_prefix: "\new" symbol optional_id . optional_context_mods
204 context_prefix: "\new" symbol optional_id optional_context_mods .
205 new_lyrics: "\addlyrics" . optional_context_mods lyric_mode_music
205 new_lyrics: "\addlyrics" optional_context_mods . lyric_mode_music
205 new_lyrics: "\addlyrics" optional_context_mods lyric_mode_music .
206 new_lyrics: new_lyrics
"\addlyrics"
.
optional_context_mods
lyric_mode_music
206 new_lyrics: new_lyrics
"\addlyrics"
optional_context_mods
.
lyric_mode_music
206 new_lyrics: new_lyrics
"\addlyrics"
optional_context_mods
lyric_mode_music
.
206 new_lyrics: new_lyrics
.
"\addlyrics"
optional_context_mods
lyric_mode_music
206 new_lyrics: new_lyrics
.
"\addlyrics"
optional_context_mods
lyric_mode_music
207 basic_music: music_function_call .
208 basic_music: repeated_music .
209 basic_music: music_bare .
210 basic_music: "\lyricsto" . simple_string lyric_mode_music
210 basic_music: "\lyricsto" simple_string . lyric_mode_music
210 basic_music: "\lyricsto" simple_string lyric_mode_music .
211 | "\lyricsto" . symbol '=' simple_string lyric_mode_music
211 basic_music: "\lyricsto" symbol '=' . simple_string lyric_mode_music
211 basic_music: "\lyricsto" symbol '=' simple_string . lyric_mode_music
211 basic_music: "\lyricsto" symbol '=' simple_string lyric_mode_music .
211 basic_music: "\lyricsto" symbol . '=' simple_string lyric_mode_music
212 contextable_music: basic_music .
213 contextable_music: pitch_as_music .
214 contextable_music: event_chord .
215 contexted_basic_music: context_prefix . contextable_music new_lyrics
215 contexted_basic_music: context_prefix contextable_music . new_lyrics
215 contexted_basic_music: context_prefix contextable_music new_lyrics .
216 | context_prefix . contextable_music
216 | context_prefix contextable_music .
217 | context_prefix . contexted_basic_music
217 contexted_basic_music: context_prefix contexted_basic_music .
218 composite_music: basic_music .
219 composite_music: contexted_basic_music .
220 | basic_music . new_lyrics
220 composite_music: basic_music new_lyrics .
221 music_bare: mode_changed_music .
222 music_bare: MUSIC_IDENTIFIER .
223 music_bare: grouped_music_list .
224 grouped_music_list: simultaneous_music .
225 grouped_music_list: sequential_music .
226 symbol_list_arg: SYMBOL_LIST .
227 | SYMBOL_LIST . '.' symbol_list_rev
227 symbol_list_arg: SYMBOL_LIST '.' . symbol_list_rev
227 symbol_list_arg: SYMBOL_LIST '.' symbol_list_rev .
228 | SYMBOL_LIST . ',' symbol_list_rev
228 symbol_list_arg: SYMBOL_LIST ',' . symbol_list_rev
228 symbol_list_arg: SYMBOL_LIST ',' symbol_list_rev .
229 symbol_list_rev: symbol_list_part .
230 symbol_list_rev: symbol_list_rev '.' . symbol_list_part
230 symbol_list_rev: symbol_list_rev '.' symbol_list_part .
230 symbol_list_rev: symbol_list_rev . '.' symbol_list_part
230 symbol_list_rev: symbol_list_rev . '.' symbol_list_part
230 symbol_list_rev: symbol_list_rev . '.' symbol_list_part
230 symbol_list_rev: symbol_list_rev . '.' symbol_list_part
230 symbol_list_rev: symbol_list_rev . '.' symbol_list_part
230 symbol_list_rev: symbol_list_rev . '.' symbol_list_part
231 | symbol_list_rev . ',' symbol_list_part
231 | symbol_list_rev . ',' symbol_list_part
231 | symbol_list_rev . ',' symbol_list_part
231 | symbol_list_rev . ',' symbol_list_part
231 | symbol_list_rev . ',' symbol_list_part
231 | symbol_list_rev . ',' symbol_list_part
231 symbol_list_rev: symbol_list_rev ',' . symbol_list_part
231 symbol_list_rev: symbol_list_rev ',' symbol_list_part .
232 symbol_list_part: symbol_list_part_bare .
233 symbol_list_part: embedded_scm_bare .
234 symbol_list_element: STRING .
234 symbol_list_element: STRING .
235 symbol_list_element: UNSIGNED .
235 symbol_list_element: UNSIGNED .
236 symbol_list_part_bare: SYMBOL .
236 symbol_list_part_bare: SYMBOL .
237 symbol_list_part_bare: symbol_list_element .
238 function_arglist_nonbackup: function_arglist_common .
239 function_arglist_nonbackup: "optional?"
"scheme?"
.
function_arglist_nonbackup
post_event_nofinger
239 function_arglist_nonbackup: "optional?"
"scheme?"
.
function_arglist_nonbackup
post_event_nofinger
239 function_arglist_nonbackup: "optional?"
"scheme?"
.
function_arglist_nonbackup
post_event_nofinger
239 function_arglist_nonbackup: "optional?"
"scheme?"
.
function_arglist_nonbackup
post_event_nofinger
239 function_arglist_nonbackup: "optional?"
"scheme?"
.
function_arglist_nonbackup
post_event_nofinger
239 function_arglist_nonbackup: "optional?"
"scheme?"
.
function_arglist_nonbackup
post_event_nofinger
239 function_arglist_nonbackup: "optional?"
"scheme?"
.
function_arglist_nonbackup
post_event_nofinger
239 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
.
post_event_nofinger
239 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
.
post_event_nofinger
239 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
.
post_event_nofinger
239 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
.
post_event_nofinger
239 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
.
post_event_nofinger
239 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
.
post_event_nofinger
239 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
post_event_nofinger
.
239 function_arglist_nonbackup: "optional?"
.
"scheme?"
function_arglist_nonbackup
post_event_nofinger
239 function_arglist_nonbackup: "optional?"
.
"scheme?"
function_arglist_nonbackup
post_event_nofinger
239 function_arglist_nonbackup: "optional?"
.
"scheme?"
function_arglist_nonbackup
post_event_nofinger
239 function_arglist_nonbackup: "optional?"
.
"scheme?"
function_arglist_nonbackup
post_event_nofinger
239 function_arglist_nonbackup: "optional?"
.
"scheme?"
function_arglist_nonbackup
post_event_nofinger
239 function_arglist_nonbackup: "optional?"
.
"scheme?"
function_arglist_nonbackup
post_event_nofinger
239 function_arglist_nonbackup: "optional?"
.
"scheme?"
function_arglist_nonbackup
post_event_nofinger
240 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
UNSIGNED
240 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
UNSIGNED
240 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
UNSIGNED
240 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
UNSIGNED
240 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
UNSIGNED
240 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
UNSIGNED
240 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
UNSIGNED
240 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
UNSIGNED
240 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
UNSIGNED
240 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
UNSIGNED
240 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
UNSIGNED
240 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
UNSIGNED
240 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
UNSIGNED
240 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
UNSIGNED
240 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
UNSIGNED
240 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
UNSIGNED
240 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
UNSIGNED
240 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
UNSIGNED
240 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
UNSIGNED
240 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
UNSIGNED
240 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
'-'
.
UNSIGNED
240 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
'-'
UNSIGNED
.
241 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
REAL
241 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
REAL
241 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
REAL
241 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
REAL
241 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
REAL
241 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
REAL
241 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
REAL
241 | "optional?"
"scheme?"
function_arglist_nonbackup
'-'
.
REAL
241 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
REAL
241 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
REAL
241 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
REAL
241 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
REAL
241 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
REAL
241 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
REAL
241 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
REAL
241 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
REAL
241 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
REAL
241 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
REAL
241 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
REAL
241 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
REAL
241 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
REAL
241 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
'-'
REAL
.
242 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
242 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
242 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
242 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
242 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
242 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
242 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
242 | "optional?"
"scheme?"
function_arglist_nonbackup
'-'
.
NUMBER_IDENTIFIER
242 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
NUMBER_IDENTIFIER
242 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
NUMBER_IDENTIFIER
242 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
NUMBER_IDENTIFIER
242 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
NUMBER_IDENTIFIER
242 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
NUMBER_IDENTIFIER
242 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
NUMBER_IDENTIFIER
242 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
242 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
242 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
242 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
242 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
242 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
242 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
242 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
.
243 | "optional?"
"scheme?"
.
function_arglist_nonbackup
embedded_scm_arg
243 | "optional?"
"scheme?"
.
function_arglist_nonbackup
embedded_scm_arg
243 | "optional?"
"scheme?"
.
function_arglist_nonbackup
embedded_scm_arg
243 | "optional?"
"scheme?"
.
function_arglist_nonbackup
embedded_scm_arg
243 | "optional?"
"scheme?"
.
function_arglist_nonbackup
embedded_scm_arg
243 | "optional?"
"scheme?"
.
function_arglist_nonbackup
embedded_scm_arg
243 | "optional?"
"scheme?"
.
function_arglist_nonbackup
embedded_scm_arg
243 | "optional?"
"scheme?"
function_arglist_nonbackup
.
embedded_scm_arg
243 | "optional?"
"scheme?"
function_arglist_nonbackup
.
embedded_scm_arg
243 | "optional?"
"scheme?"
function_arglist_nonbackup
.
embedded_scm_arg
243 | "optional?"
"scheme?"
function_arglist_nonbackup
.
embedded_scm_arg
243 | "optional?"
"scheme?"
function_arglist_nonbackup
.
embedded_scm_arg
243 | "optional?"
"scheme?"
function_arglist_nonbackup
.
embedded_scm_arg
243 | "optional?"
.
"scheme?"
function_arglist_nonbackup
embedded_scm_arg
243 | "optional?"
.
"scheme?"
function_arglist_nonbackup
embedded_scm_arg
243 | "optional?"
.
"scheme?"
function_arglist_nonbackup
embedded_scm_arg
243 | "optional?"
.
"scheme?"
function_arglist_nonbackup
embedded_scm_arg
243 | "optional?"
.
"scheme?"
function_arglist_nonbackup
embedded_scm_arg
243 | "optional?"
.
"scheme?"
function_arglist_nonbackup
embedded_scm_arg
243 | "optional?"
.
"scheme?"
function_arglist_nonbackup
embedded_scm_arg
243 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
embedded_scm_arg
.
244 | "optional?"
"scheme?"
.
function_arglist_nonbackup
bare_number_common
244 | "optional?"
"scheme?"
.
function_arglist_nonbackup
bare_number_common
244 | "optional?"
"scheme?"
.
function_arglist_nonbackup
bare_number_common
244 | "optional?"
"scheme?"
.
function_arglist_nonbackup
bare_number_common
244 | "optional?"
"scheme?"
.
function_arglist_nonbackup
bare_number_common
244 | "optional?"
"scheme?"
.
function_arglist_nonbackup
bare_number_common
244 | "optional?"
"scheme?"
.
function_arglist_nonbackup
bare_number_common
244 | "optional?"
"scheme?"
function_arglist_nonbackup
.
bare_number_common
244 | "optional?"
"scheme?"
function_arglist_nonbackup
.
bare_number_common
244 | "optional?"
"scheme?"
function_arglist_nonbackup
.
bare_number_common
244 | "optional?"
"scheme?"
function_arglist_nonbackup
.
bare_number_common
244 | "optional?"
"scheme?"
function_arglist_nonbackup
.
bare_number_common
244 | "optional?"
"scheme?"
function_arglist_nonbackup
.
bare_number_common
244 | "optional?"
.
"scheme?"
function_arglist_nonbackup
bare_number_common
244 | "optional?"
.
"scheme?"
function_arglist_nonbackup
bare_number_common
244 | "optional?"
.
"scheme?"
function_arglist_nonbackup
bare_number_common
244 | "optional?"
.
"scheme?"
function_arglist_nonbackup
bare_number_common
244 | "optional?"
.
"scheme?"
function_arglist_nonbackup
bare_number_common
244 | "optional?"
.
"scheme?"
function_arglist_nonbackup
bare_number_common
244 | "optional?"
.
"scheme?"
function_arglist_nonbackup
bare_number_common
244 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
bare_number_common
.
245 function_arglist_nonbackup: function_arglist_nonbackup_reparse
"(reparsed?)"
.
pitch_or_music
245 function_arglist_nonbackup: function_arglist_nonbackup_reparse
"(reparsed?)"
pitch_or_music
.
245 function_arglist_nonbackup: function_arglist_nonbackup_reparse
.
"(reparsed?)"
pitch_or_music
246 | function_arglist_nonbackup_reparse
"(reparsed?)"
.
multiplied_duration
246 | function_arglist_nonbackup_reparse
.
"(reparsed?)"
multiplied_duration
246 function_arglist_nonbackup: function_arglist_nonbackup_reparse
"(reparsed?)"
multiplied_duration
.
247 | function_arglist_nonbackup_reparse
"(reparsed?)"
.
reparsed_rhythm
247 | function_arglist_nonbackup_reparse
.
"(reparsed?)"
reparsed_rhythm
247 function_arglist_nonbackup: function_arglist_nonbackup_reparse
"(reparsed?)"
reparsed_rhythm
.
248 | function_arglist_nonbackup_reparse
"(reparsed?)"
.
bare_number_common
248 | function_arglist_nonbackup_reparse
.
"(reparsed?)"
bare_number_common
248 function_arglist_nonbackup: function_arglist_nonbackup_reparse
"(reparsed?)"
bare_number_common
.
249 | function_arglist_nonbackup_reparse
"(reparsed?)"
.
SCM_ARG
249 | function_arglist_nonbackup_reparse
.
"(reparsed?)"
SCM_ARG
249 function_arglist_nonbackup: function_arglist_nonbackup_reparse
"(reparsed?)"
SCM_ARG
.
250 | function_arglist_nonbackup_reparse
"(reparsed?)"
.
lyric_element_music
250 | function_arglist_nonbackup_reparse
.
"(reparsed?)"
lyric_element_music
250 function_arglist_nonbackup: function_arglist_nonbackup_reparse
"(reparsed?)"
lyric_element_music
.
251 | function_arglist_nonbackup_reparse
"(reparsed?)"
.
symbol_list_arg
251 | function_arglist_nonbackup_reparse
.
"(reparsed?)"
symbol_list_arg
251 function_arglist_nonbackup: function_arglist_nonbackup_reparse
"(reparsed?)"
symbol_list_arg
.
252 reparsed_rhythm: DURATION_ARG . dots multipliers post_events
252 reparsed_rhythm: DURATION_ARG dots . multipliers post_events
252 reparsed_rhythm: DURATION_ARG dots multipliers . post_events
252 reparsed_rhythm: DURATION_ARG dots multipliers post_events .
253 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
.
function_arglist_nonbackup
SCM_IDENTIFIER
253 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
.
function_arglist_nonbackup
SCM_IDENTIFIER
253 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
.
function_arglist_nonbackup
SCM_IDENTIFIER
253 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
.
function_arglist_nonbackup
SCM_IDENTIFIER
253 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
.
function_arglist_nonbackup
SCM_IDENTIFIER
253 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
.
function_arglist_nonbackup
SCM_IDENTIFIER
253 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
.
function_arglist_nonbackup
SCM_IDENTIFIER
253 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
.
SCM_IDENTIFIER
253 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
.
SCM_IDENTIFIER
253 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
.
SCM_IDENTIFIER
253 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
.
SCM_IDENTIFIER
253 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
.
SCM_IDENTIFIER
253 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
.
SCM_IDENTIFIER
253 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
SCM_IDENTIFIER
.
253 function_arglist_nonbackup_reparse: "optional?"
.
"scheme?"
function_arglist_nonbackup
SCM_IDENTIFIER
253 function_arglist_nonbackup_reparse: "optional?"
.
"scheme?"
function_arglist_nonbackup
SCM_IDENTIFIER
253 function_arglist_nonbackup_reparse: "optional?"
.
"scheme?"
function_arglist_nonbackup
SCM_IDENTIFIER
253 function_arglist_nonbackup_reparse: "optional?"
.
"scheme?"
function_arglist_nonbackup
SCM_IDENTIFIER
253 function_arglist_nonbackup_reparse: "optional?"
.
"scheme?"
function_arglist_nonbackup
SCM_IDENTIFIER
253 function_arglist_nonbackup_reparse: "optional?"
.
"scheme?"
function_arglist_nonbackup
SCM_IDENTIFIER
253 function_arglist_nonbackup_reparse: "optional?"
.
"scheme?"
function_arglist_nonbackup
SCM_IDENTIFIER
254 | "optional?"
"scheme?"
.
function_arglist_nonbackup
pitch
254 | "optional?"
"scheme?"
.
function_arglist_nonbackup
pitch
254 | "optional?"
"scheme?"
.
function_arglist_nonbackup
pitch
254 | "optional?"
"scheme?"
.
function_arglist_nonbackup
pitch
254 | "optional?"
"scheme?"
.
function_arglist_nonbackup
pitch
254 | "optional?"
"scheme?"
.
function_arglist_nonbackup
pitch
254 | "optional?"
"scheme?"
.
function_arglist_nonbackup
pitch
254 | "optional?"
"scheme?"
function_arglist_nonbackup
.
pitch
254 | "optional?"
"scheme?"
function_arglist_nonbackup
.
pitch
254 | "optional?"
"scheme?"
function_arglist_nonbackup
.
pitch
254 | "optional?"
"scheme?"
function_arglist_nonbackup
.
pitch
254 | "optional?"
"scheme?"
function_arglist_nonbackup
.
pitch
254 | "optional?"
"scheme?"
function_arglist_nonbackup
.
pitch
254 | "optional?"
.
"scheme?"
function_arglist_nonbackup
pitch
254 | "optional?"
.
"scheme?"
function_arglist_nonbackup
pitch
254 | "optional?"
.
"scheme?"
function_arglist_nonbackup
pitch
254 | "optional?"
.
"scheme?"
function_arglist_nonbackup
pitch
254 | "optional?"
.
"scheme?"
function_arglist_nonbackup
pitch
254 | "optional?"
.
"scheme?"
function_arglist_nonbackup
pitch
254 | "optional?"
.
"scheme?"
function_arglist_nonbackup
pitch
254 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
pitch
.
255 | "optional?"
"scheme?"
.
function_arglist_nonbackup
steno_tonic_pitch
255 | "optional?"
"scheme?"
.
function_arglist_nonbackup
steno_tonic_pitch
255 | "optional?"
"scheme?"
.
function_arglist_nonbackup
steno_tonic_pitch
255 | "optional?"
"scheme?"
.
function_arglist_nonbackup
steno_tonic_pitch
255 | "optional?"
"scheme?"
.
function_arglist_nonbackup
steno_tonic_pitch
255 | "optional?"
"scheme?"
.
function_arglist_nonbackup
steno_tonic_pitch
255 | "optional?"
"scheme?"
.
function_arglist_nonbackup
steno_tonic_pitch
255 | "optional?"
"scheme?"
function_arglist_nonbackup
.
steno_tonic_pitch
255 | "optional?"
"scheme?"
function_arglist_nonbackup
.
steno_tonic_pitch
255 | "optional?"
"scheme?"
function_arglist_nonbackup
.
steno_tonic_pitch
255 | "optional?"
"scheme?"
function_arglist_nonbackup
.
steno_tonic_pitch
255 | "optional?"
"scheme?"
function_arglist_nonbackup
.
steno_tonic_pitch
255 | "optional?"
"scheme?"
function_arglist_nonbackup
.
steno_tonic_pitch
255 | "optional?"
.
"scheme?"
function_arglist_nonbackup
steno_tonic_pitch
255 | "optional?"
.
"scheme?"
function_arglist_nonbackup
steno_tonic_pitch
255 | "optional?"
.
"scheme?"
function_arglist_nonbackup
steno_tonic_pitch
255 | "optional?"
.
"scheme?"
function_arglist_nonbackup
steno_tonic_pitch
255 | "optional?"
.
"scheme?"
function_arglist_nonbackup
steno_tonic_pitch
255 | "optional?"
.
"scheme?"
function_arglist_nonbackup
steno_tonic_pitch
255 | "optional?"
.
"scheme?"
function_arglist_nonbackup
steno_tonic_pitch
255 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
steno_tonic_pitch
.
256 | "optional?"
"scheme?"
.
function_arglist_nonbackup
STRING
256 | "optional?"
"scheme?"
.
function_arglist_nonbackup
STRING
256 | "optional?"
"scheme?"
.
function_arglist_nonbackup
STRING
256 | "optional?"
"scheme?"
.
function_arglist_nonbackup
STRING
256 | "optional?"
"scheme?"
.
function_arglist_nonbackup
STRING
256 | "optional?"
"scheme?"
.
function_arglist_nonbackup
STRING
256 | "optional?"
"scheme?"
.
function_arglist_nonbackup
STRING
256 | "optional?"
"scheme?"
function_arglist_nonbackup
.
STRING
256 | "optional?"
"scheme?"
function_arglist_nonbackup
.
STRING
256 | "optional?"
"scheme?"
function_arglist_nonbackup
.
STRING
256 | "optional?"
"scheme?"
function_arglist_nonbackup
.
STRING
256 | "optional?"
"scheme?"
function_arglist_nonbackup
.
STRING
256 | "optional?"
"scheme?"
function_arglist_nonbackup
.
STRING
256 | "optional?"
.
"scheme?"
function_arglist_nonbackup
STRING
256 | "optional?"
.
"scheme?"
function_arglist_nonbackup
STRING
256 | "optional?"
.
"scheme?"
function_arglist_nonbackup
STRING
256 | "optional?"
.
"scheme?"
function_arglist_nonbackup
STRING
256 | "optional?"
.
"scheme?"
function_arglist_nonbackup
STRING
256 | "optional?"
.
"scheme?"
function_arglist_nonbackup
STRING
256 | "optional?"
.
"scheme?"
function_arglist_nonbackup
STRING
256 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
STRING
.
257 | "optional?"
"scheme?"
.
function_arglist_nonbackup
SYMBOL
257 | "optional?"
"scheme?"
.
function_arglist_nonbackup
SYMBOL
257 | "optional?"
"scheme?"
.
function_arglist_nonbackup
SYMBOL
257 | "optional?"
"scheme?"
.
function_arglist_nonbackup
SYMBOL
257 | "optional?"
"scheme?"
.
function_arglist_nonbackup
SYMBOL
257 | "optional?"
"scheme?"
.
function_arglist_nonbackup
SYMBOL
257 | "optional?"
"scheme?"
.
function_arglist_nonbackup
SYMBOL
257 | "optional?"
"scheme?"
function_arglist_nonbackup
.
SYMBOL
257 | "optional?"
"scheme?"
function_arglist_nonbackup
.
SYMBOL
257 | "optional?"
"scheme?"
function_arglist_nonbackup
.
SYMBOL
257 | "optional?"
"scheme?"
function_arglist_nonbackup
.
SYMBOL
257 | "optional?"
"scheme?"
function_arglist_nonbackup
.
SYMBOL
257 | "optional?"
"scheme?"
function_arglist_nonbackup
.
SYMBOL
257 | "optional?"
.
"scheme?"
function_arglist_nonbackup
SYMBOL
257 | "optional?"
.
"scheme?"
function_arglist_nonbackup
SYMBOL
257 | "optional?"
.
"scheme?"
function_arglist_nonbackup
SYMBOL
257 | "optional?"
.
"scheme?"
function_arglist_nonbackup
SYMBOL
257 | "optional?"
.
"scheme?"
function_arglist_nonbackup
SYMBOL
257 | "optional?"
.
"scheme?"
function_arglist_nonbackup
SYMBOL
257 | "optional?"
.
"scheme?"
function_arglist_nonbackup
SYMBOL
257 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
SYMBOL
.
258 | "optional?"
"scheme?"
.
function_arglist_nonbackup
full_markup
258 | "optional?"
"scheme?"
.
function_arglist_nonbackup
full_markup
258 | "optional?"
"scheme?"
.
function_arglist_nonbackup
full_markup
258 | "optional?"
"scheme?"
.
function_arglist_nonbackup
full_markup
258 | "optional?"
"scheme?"
.
function_arglist_nonbackup
full_markup
258 | "optional?"
"scheme?"
.
function_arglist_nonbackup
full_markup
258 | "optional?"
"scheme?"
.
function_arglist_nonbackup
full_markup
258 | "optional?"
"scheme?"
function_arglist_nonbackup
.
full_markup
258 | "optional?"
"scheme?"
function_arglist_nonbackup
.
full_markup
258 | "optional?"
"scheme?"
function_arglist_nonbackup
.
full_markup
258 | "optional?"
"scheme?"
function_arglist_nonbackup
.
full_markup
258 | "optional?"
"scheme?"
function_arglist_nonbackup
.
full_markup
258 | "optional?"
"scheme?"
function_arglist_nonbackup
.
full_markup
258 | "optional?"
.
"scheme?"
function_arglist_nonbackup
full_markup
258 | "optional?"
.
"scheme?"
function_arglist_nonbackup
full_markup
258 | "optional?"
.
"scheme?"
function_arglist_nonbackup
full_markup
258 | "optional?"
.
"scheme?"
function_arglist_nonbackup
full_markup
258 | "optional?"
.
"scheme?"
function_arglist_nonbackup
full_markup
258 | "optional?"
.
"scheme?"
function_arglist_nonbackup
full_markup
258 | "optional?"
.
"scheme?"
function_arglist_nonbackup
full_markup
258 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
full_markup
.
259 | "optional?"
"scheme?"
.
function_arglist_nonbackup
UNSIGNED
259 | "optional?"
"scheme?"
.
function_arglist_nonbackup
UNSIGNED
259 | "optional?"
"scheme?"
.
function_arglist_nonbackup
UNSIGNED
259 | "optional?"
"scheme?"
.
function_arglist_nonbackup
UNSIGNED
259 | "optional?"
"scheme?"
.
function_arglist_nonbackup
UNSIGNED
259 | "optional?"
"scheme?"
.
function_arglist_nonbackup
UNSIGNED
259 | "optional?"
"scheme?"
.
function_arglist_nonbackup
UNSIGNED
259 | "optional?"
"scheme?"
function_arglist_nonbackup
.
UNSIGNED
259 | "optional?"
"scheme?"
function_arglist_nonbackup
.
UNSIGNED
259 | "optional?"
"scheme?"
function_arglist_nonbackup
.
UNSIGNED
259 | "optional?"
"scheme?"
function_arglist_nonbackup
.
UNSIGNED
259 | "optional?"
"scheme?"
function_arglist_nonbackup
.
UNSIGNED
259 | "optional?"
"scheme?"
function_arglist_nonbackup
.
UNSIGNED
259 | "optional?"
.
"scheme?"
function_arglist_nonbackup
UNSIGNED
259 | "optional?"
.
"scheme?"
function_arglist_nonbackup
UNSIGNED
259 | "optional?"
.
"scheme?"
function_arglist_nonbackup
UNSIGNED
259 | "optional?"
.
"scheme?"
function_arglist_nonbackup
UNSIGNED
259 | "optional?"
.
"scheme?"
function_arglist_nonbackup
UNSIGNED
259 | "optional?"
.
"scheme?"
function_arglist_nonbackup
UNSIGNED
259 | "optional?"
.
"scheme?"
function_arglist_nonbackup
UNSIGNED
259 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
UNSIGNED
.
260 | "optional?"
"scheme?"
.
function_arglist_nonbackup
DURATION_IDENTIFIER
260 | "optional?"
"scheme?"
.
function_arglist_nonbackup
DURATION_IDENTIFIER
260 | "optional?"
"scheme?"
.
function_arglist_nonbackup
DURATION_IDENTIFIER
260 | "optional?"
"scheme?"
.
function_arglist_nonbackup
DURATION_IDENTIFIER
260 | "optional?"
"scheme?"
.
function_arglist_nonbackup
DURATION_IDENTIFIER
260 | "optional?"
"scheme?"
.
function_arglist_nonbackup
DURATION_IDENTIFIER
260 | "optional?"
"scheme?"
.
function_arglist_nonbackup
DURATION_IDENTIFIER
260 | "optional?"
"scheme?"
function_arglist_nonbackup
.
DURATION_IDENTIFIER
260 | "optional?"
"scheme?"
function_arglist_nonbackup
.
DURATION_IDENTIFIER
260 | "optional?"
"scheme?"
function_arglist_nonbackup
.
DURATION_IDENTIFIER
260 | "optional?"
"scheme?"
function_arglist_nonbackup
.
DURATION_IDENTIFIER
260 | "optional?"
"scheme?"
function_arglist_nonbackup
.
DURATION_IDENTIFIER
260 | "optional?"
"scheme?"
function_arglist_nonbackup
.
DURATION_IDENTIFIER
260 | "optional?"
.
"scheme?"
function_arglist_nonbackup
DURATION_IDENTIFIER
260 | "optional?"
.
"scheme?"
function_arglist_nonbackup
DURATION_IDENTIFIER
260 | "optional?"
.
"scheme?"
function_arglist_nonbackup
DURATION_IDENTIFIER
260 | "optional?"
.
"scheme?"
function_arglist_nonbackup
DURATION_IDENTIFIER
260 | "optional?"
.
"scheme?"
function_arglist_nonbackup
DURATION_IDENTIFIER
260 | "optional?"
.
"scheme?"
function_arglist_nonbackup
DURATION_IDENTIFIER
260 | "optional?"
.
"scheme?"
function_arglist_nonbackup
DURATION_IDENTIFIER
260 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
DURATION_IDENTIFIER
.
261 function_arglist_backup: function_arglist_common .
262 function_arglist_backup: "optional?"
"scheme?"
.
function_arglist_backup
embedded_scm_arg
262 function_arglist_backup: "optional?"
"scheme?"
.
function_arglist_backup
embedded_scm_arg
262 function_arglist_backup: "optional?"
"scheme?"
.
function_arglist_backup
embedded_scm_arg
262 function_arglist_backup: "optional?"
"scheme?"
.
function_arglist_backup
embedded_scm_arg
262 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
.
embedded_scm_arg
262 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
.
embedded_scm_arg
262 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
embedded_scm_arg
.
262 function_arglist_backup: "optional?"
.
"scheme?"
function_arglist_backup
embedded_scm_arg
262 function_arglist_backup: "optional?"
.
"scheme?"
function_arglist_backup
embedded_scm_arg
262 function_arglist_backup: "optional?"
.
"scheme?"
function_arglist_backup
embedded_scm_arg
262 function_arglist_backup: "optional?"
.
"scheme?"
function_arglist_backup
embedded_scm_arg
263 | "optional?"
"scheme?"
.
function_arglist_backup
post_event_nofinger
263 | "optional?"
"scheme?"
.
function_arglist_backup
post_event_nofinger
263 | "optional?"
"scheme?"
.
function_arglist_backup
post_event_nofinger
263 | "optional?"
"scheme?"
.
function_arglist_backup
post_event_nofinger
263 | "optional?"
"scheme?"
function_arglist_backup
.
post_event_nofinger
263 | "optional?"
"scheme?"
function_arglist_backup
.
post_event_nofinger
263 | "optional?"
.
"scheme?"
function_arglist_backup
post_event_nofinger
263 | "optional?"
.
"scheme?"
function_arglist_backup
post_event_nofinger
263 | "optional?"
.
"scheme?"
function_arglist_backup
post_event_nofinger
263 | "optional?"
.
"scheme?"
function_arglist_backup
post_event_nofinger
263 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
post_event_nofinger
.
264 | "optional?"
"scheme?"
.
function_arglist_backup
pitch
264 | "optional?"
"scheme?"
.
function_arglist_backup
pitch
264 | "optional?"
"scheme?"
.
function_arglist_backup
pitch
264 | "optional?"
"scheme?"
.
function_arglist_backup
pitch
264 | "optional?"
"scheme?"
function_arglist_backup
.
pitch
264 | "optional?"
"scheme?"
function_arglist_backup
.
pitch
264 | "optional?"
.
"scheme?"
function_arglist_backup
pitch
264 | "optional?"
.
"scheme?"
function_arglist_backup
pitch
264 | "optional?"
.
"scheme?"
function_arglist_backup
pitch
264 | "optional?"
.
"scheme?"
function_arglist_backup
pitch
264 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
pitch
.
265 | "optional?"
"scheme?"
.
function_arglist_backup
steno_tonic_pitch
265 | "optional?"
"scheme?"
.
function_arglist_backup
steno_tonic_pitch
265 | "optional?"
"scheme?"
.
function_arglist_backup
steno_tonic_pitch
265 | "optional?"
"scheme?"
.
function_arglist_backup
steno_tonic_pitch
265 | "optional?"
"scheme?"
function_arglist_backup
.
steno_tonic_pitch
265 | "optional?"
"scheme?"
function_arglist_backup
.
steno_tonic_pitch
265 | "optional?"
.
"scheme?"
function_arglist_backup
steno_tonic_pitch
265 | "optional?"
.
"scheme?"
function_arglist_backup
steno_tonic_pitch
265 | "optional?"
.
"scheme?"
function_arglist_backup
steno_tonic_pitch
265 | "optional?"
.
"scheme?"
function_arglist_backup
steno_tonic_pitch
265 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
steno_tonic_pitch
.
266 | "optional?"
"scheme?"
.
function_arglist_backup
full_markup
266 | "optional?"
"scheme?"
.
function_arglist_backup
full_markup
266 | "optional?"
"scheme?"
.
function_arglist_backup
full_markup
266 | "optional?"
"scheme?"
.
function_arglist_backup
full_markup
266 | "optional?"
"scheme?"
function_arglist_backup
.
full_markup
266 | "optional?"
"scheme?"
function_arglist_backup
.
full_markup
266 | "optional?"
.
"scheme?"
function_arglist_backup
full_markup
266 | "optional?"
.
"scheme?"
function_arglist_backup
full_markup
266 | "optional?"
.
"scheme?"
function_arglist_backup
full_markup
266 | "optional?"
.
"scheme?"
function_arglist_backup
full_markup
266 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
full_markup
.
267 | "optional?"
"scheme?"
.
function_arglist_backup
UNSIGNED
267 | "optional?"
"scheme?"
.
function_arglist_backup
UNSIGNED
267 | "optional?"
"scheme?"
.
function_arglist_backup
UNSIGNED
267 | "optional?"
"scheme?"
.
function_arglist_backup
UNSIGNED
267 | "optional?"
"scheme?"
function_arglist_backup
.
UNSIGNED
267 | "optional?"
"scheme?"
function_arglist_backup
.
UNSIGNED
267 | "optional?"
.
"scheme?"
function_arglist_backup
UNSIGNED
267 | "optional?"
.
"scheme?"
function_arglist_backup
UNSIGNED
267 | "optional?"
.
"scheme?"
function_arglist_backup
UNSIGNED
267 | "optional?"
.
"scheme?"
function_arglist_backup
UNSIGNED
267 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
UNSIGNED
.
268 | "optional?"
"scheme?"
.
function_arglist_backup
REAL
268 | "optional?"
"scheme?"
.
function_arglist_backup
REAL
268 | "optional?"
"scheme?"
.
function_arglist_backup
REAL
268 | "optional?"
"scheme?"
.
function_arglist_backup
REAL
268 | "optional?"
"scheme?"
function_arglist_backup
.
REAL
268 | "optional?"
"scheme?"
function_arglist_backup
.
REAL
268 | "optional?"
.
"scheme?"
function_arglist_backup
REAL
268 | "optional?"
.
"scheme?"
function_arglist_backup
REAL
268 | "optional?"
.
"scheme?"
function_arglist_backup
REAL
268 | "optional?"
.
"scheme?"
function_arglist_backup
REAL
268 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
REAL
.
269 | "optional?"
"scheme?"
.
function_arglist_backup
NUMBER_IDENTIFIER
269 | "optional?"
"scheme?"
.
function_arglist_backup
NUMBER_IDENTIFIER
269 | "optional?"
"scheme?"
.
function_arglist_backup
NUMBER_IDENTIFIER
269 | "optional?"
"scheme?"
.
function_arglist_backup
NUMBER_IDENTIFIER
269 | "optional?"
"scheme?"
function_arglist_backup
.
NUMBER_IDENTIFIER
269 | "optional?"
"scheme?"
function_arglist_backup
.
NUMBER_IDENTIFIER
269 | "optional?"
.
"scheme?"
function_arglist_backup
NUMBER_IDENTIFIER
269 | "optional?"
.
"scheme?"
function_arglist_backup
NUMBER_IDENTIFIER
269 | "optional?"
.
"scheme?"
function_arglist_backup
NUMBER_IDENTIFIER
269 | "optional?"
.
"scheme?"
function_arglist_backup
NUMBER_IDENTIFIER
269 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
NUMBER_IDENTIFIER
.
270 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
UNSIGNED
270 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
UNSIGNED
270 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
UNSIGNED
270 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
UNSIGNED
270 | "optional?"
"scheme?"
function_arglist_backup
.
'-'
UNSIGNED
270 | "optional?"
"scheme?"
function_arglist_backup
.
'-'
UNSIGNED
270 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
UNSIGNED
270 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
UNSIGNED
270 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
UNSIGNED
270 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
UNSIGNED
270 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
'-'
.
UNSIGNED
270 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
'-'
UNSIGNED
.
271 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
REAL
271 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
REAL
271 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
REAL
271 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
REAL
271 | "optional?"
"scheme?"
function_arglist_backup
'-'
.
REAL
271 | "optional?"
"scheme?"
function_arglist_backup
.
'-'
REAL
271 | "optional?"
"scheme?"
function_arglist_backup
.
'-'
REAL
271 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
REAL
271 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
REAL
271 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
REAL
271 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
REAL
271 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
'-'
REAL
.
272 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
NUMBER_IDENTIFIER
272 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
NUMBER_IDENTIFIER
272 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
NUMBER_IDENTIFIER
272 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
NUMBER_IDENTIFIER
272 | "optional?"
"scheme?"
function_arglist_backup
'-'
.
NUMBER_IDENTIFIER
272 | "optional?"
"scheme?"
function_arglist_backup
.
'-'
NUMBER_IDENTIFIER
272 | "optional?"
"scheme?"
function_arglist_backup
.
'-'
NUMBER_IDENTIFIER
272 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
NUMBER_IDENTIFIER
272 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
NUMBER_IDENTIFIER
272 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
NUMBER_IDENTIFIER
272 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
NUMBER_IDENTIFIER
272 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
'-'
NUMBER_IDENTIFIER
.
273 | "optional?"
"scheme?"
.
function_arglist_backup
DURATION_IDENTIFIER
273 | "optional?"
"scheme?"
.
function_arglist_backup
DURATION_IDENTIFIER
273 | "optional?"
"scheme?"
.
function_arglist_backup
DURATION_IDENTIFIER
273 | "optional?"
"scheme?"
.
function_arglist_backup
DURATION_IDENTIFIER
273 | "optional?"
"scheme?"
function_arglist_backup
.
DURATION_IDENTIFIER
273 | "optional?"
"scheme?"
function_arglist_backup
.
DURATION_IDENTIFIER
273 | "optional?"
.
"scheme?"
function_arglist_backup
DURATION_IDENTIFIER
273 | "optional?"
.
"scheme?"
function_arglist_backup
DURATION_IDENTIFIER
273 | "optional?"
.
"scheme?"
function_arglist_backup
DURATION_IDENTIFIER
273 | "optional?"
.
"scheme?"
function_arglist_backup
DURATION_IDENTIFIER
273 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
DURATION_IDENTIFIER
.
274 | "optional?"
"scheme?"
.
function_arglist_backup
SCM_IDENTIFIER
274 | "optional?"
"scheme?"
.
function_arglist_backup
SCM_IDENTIFIER
274 | "optional?"
"scheme?"
.
function_arglist_backup
SCM_IDENTIFIER
274 | "optional?"
"scheme?"
.
function_arglist_backup
SCM_IDENTIFIER
274 | "optional?"
"scheme?"
function_arglist_backup
.
SCM_IDENTIFIER
274 | "optional?"
"scheme?"
function_arglist_backup
.
SCM_IDENTIFIER
274 | "optional?"
.
"scheme?"
function_arglist_backup
SCM_IDENTIFIER
274 | "optional?"
.
"scheme?"
function_arglist_backup
SCM_IDENTIFIER
274 | "optional?"
.
"scheme?"
function_arglist_backup
SCM_IDENTIFIER
274 | "optional?"
.
"scheme?"
function_arglist_backup
SCM_IDENTIFIER
274 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
SCM_IDENTIFIER
.
275 | "optional?"
"scheme?"
.
function_arglist_backup
STRING
275 | "optional?"
"scheme?"
.
function_arglist_backup
STRING
275 | "optional?"
"scheme?"
.
function_arglist_backup
STRING
275 | "optional?"
"scheme?"
.
function_arglist_backup
STRING
275 | "optional?"
"scheme?"
function_arglist_backup
.
STRING
275 | "optional?"
"scheme?"
function_arglist_backup
.
STRING
275 | "optional?"
.
"scheme?"
function_arglist_backup
STRING
275 | "optional?"
.
"scheme?"
function_arglist_backup
STRING
275 | "optional?"
.
"scheme?"
function_arglist_backup
STRING
275 | "optional?"
.
"scheme?"
function_arglist_backup
STRING
275 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
STRING
.
276 | "optional?"
"scheme?"
.
function_arglist_backup
SYMBOL
276 | "optional?"
"scheme?"
.
function_arglist_backup
SYMBOL
276 | "optional?"
"scheme?"
.
function_arglist_backup
SYMBOL
276 | "optional?"
"scheme?"
.
function_arglist_backup
SYMBOL
276 | "optional?"
"scheme?"
function_arglist_backup
.
SYMBOL
276 | "optional?"
"scheme?"
function_arglist_backup
.
SYMBOL
276 | "optional?"
.
"scheme?"
function_arglist_backup
SYMBOL
276 | "optional?"
.
"scheme?"
function_arglist_backup
SYMBOL
276 | "optional?"
.
"scheme?"
function_arglist_backup
SYMBOL
276 | "optional?"
.
"scheme?"
function_arglist_backup
SYMBOL
276 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
SYMBOL
.
277 | function_arglist_backup
.
"(reparsed?)"
pitch_or_music
277 | function_arglist_backup
.
"(reparsed?)"
pitch_or_music
277 function_arglist_backup: function_arglist_backup
"(reparsed?)"
.
pitch_or_music
277 function_arglist_backup: function_arglist_backup
"(reparsed?)"
pitch_or_music
.
277 function_arglist_backup: function_arglist_backup
.
"(reparsed?)"
pitch_or_music
278 | function_arglist_backup
"(reparsed?)"
.
bare_number_common
278 | function_arglist_backup
.
"(reparsed?)"
bare_number_common
278 | function_arglist_backup
.
"(reparsed?)"
bare_number_common
278 | function_arglist_backup
.
"(reparsed?)"
bare_number_common
278 function_arglist_backup: function_arglist_backup
"(reparsed?)"
bare_number_common
.
279 | function_arglist_backup
"(reparsed?)"
.
multiplied_duration
279 | function_arglist_backup
.
"(reparsed?)"
multiplied_duration
279 | function_arglist_backup
.
"(reparsed?)"
multiplied_duration
279 | function_arglist_backup
.
"(reparsed?)"
multiplied_duration
279 function_arglist_backup: function_arglist_backup
"(reparsed?)"
multiplied_duration
.
280 | function_arglist_backup
"(reparsed?)"
.
reparsed_rhythm
280 | function_arglist_backup
.
"(reparsed?)"
reparsed_rhythm
280 | function_arglist_backup
.
"(reparsed?)"
reparsed_rhythm
280 | function_arglist_backup
.
"(reparsed?)"
reparsed_rhythm
280 function_arglist_backup: function_arglist_backup
"(reparsed?)"
reparsed_rhythm
.
281 | function_arglist_backup
"(reparsed?)"
.
symbol_list_arg
281 | function_arglist_backup
.
"(reparsed?)"
symbol_list_arg
281 | function_arglist_backup
.
"(reparsed?)"
symbol_list_arg
281 | function_arglist_backup
.
"(reparsed?)"
symbol_list_arg
281 function_arglist_backup: function_arglist_backup
"(reparsed?)"
symbol_list_arg
.
282 function_arglist: function_arglist_nonbackup .
283 function_arglist: "optional?"
"scheme?"
.
function_arglist_skip_nonbackup
"\default"
283 function_arglist: "optional?"
"scheme?"
.
function_arglist_skip_nonbackup
"\default"
283 function_arglist: "optional?"
"scheme?"
.
function_arglist_skip_nonbackup
"\default"
283 function_arglist: "optional?"
"scheme?"
.
function_arglist_skip_nonbackup
"\default"
283 function_arglist: "optional?"
"scheme?"
function_arglist_skip_nonbackup
"\default"
.
283 function_arglist: "optional?"
"scheme?"
function_arglist_skip_nonbackup
.
"\default"
283 function_arglist: "optional?"
.
"scheme?"
function_arglist_skip_nonbackup
"\default"
283 function_arglist: "optional?"
.
"scheme?"
function_arglist_skip_nonbackup
"\default"
283 function_arglist: "optional?"
.
"scheme?"
function_arglist_skip_nonbackup
"\default"
283 function_arglist: "optional?"
.
"scheme?"
function_arglist_skip_nonbackup
"\default"
284 function_arglist_skip_nonbackup: function_arglist_nonbackup .
284 function_arglist_skip_nonbackup: function_arglist_nonbackup .
284 function_arglist_skip_nonbackup: function_arglist_nonbackup .
284 function_arglist_skip_nonbackup: function_arglist_nonbackup .
284 function_arglist_skip_nonbackup: function_arglist_nonbackup .
285 function_arglist_skip_nonbackup: "optional?"
"scheme?"
.
function_arglist_skip_nonbackup
285 function_arglist_skip_nonbackup: "optional?"
"scheme?"
.
function_arglist_skip_nonbackup
285 function_arglist_skip_nonbackup: "optional?"
"scheme?"
function_arglist_skip_nonbackup
.
285 function_arglist_skip_nonbackup: "optional?"
.
"scheme?"
function_arglist_skip_nonbackup
285 function_arglist_skip_nonbackup: "optional?"
.
"scheme?"
function_arglist_skip_nonbackup
286 function_arglist_partial: "scheme?" . function_arglist_optional
286 function_arglist_partial: "scheme?" . function_arglist_optional
286 function_arglist_partial: "scheme?" . function_arglist_optional
286 function_arglist_partial: "scheme?" . function_arglist_optional
286 function_arglist_partial: "scheme?" . function_arglist_optional
286 function_arglist_partial: "scheme?" . function_arglist_optional
286 function_arglist_partial: "scheme?" . function_arglist_optional
286 function_arglist_partial: "scheme?" function_arglist_optional .
286 function_arglist_partial: "scheme?" function_arglist_optional .
286 function_arglist_partial: "scheme?" function_arglist_optional .
286 function_arglist_partial: "scheme?" function_arglist_optional .
286 function_arglist_partial: "scheme?" function_arglist_optional .
286 function_arglist_partial: "scheme?" function_arglist_optional .
286 function_arglist_partial: "scheme?" function_arglist_optional .
287 | "scheme?" . function_arglist_partial_optional
287 | "scheme?" . function_arglist_partial_optional
287 | "scheme?" . function_arglist_partial_optional
287 | "scheme?" . function_arglist_partial_optional
287 | "scheme?" . function_arglist_partial_optional
287 | "scheme?" . function_arglist_partial_optional
287 | "scheme?" . function_arglist_partial_optional
287 function_arglist_partial: "scheme?" function_arglist_partial_optional .
288 function_arglist_partial: "optional?"
"scheme?"
.
function_arglist_nonbackup
288 function_arglist_partial: "optional?"
"scheme?"
.
function_arglist_nonbackup
288 function_arglist_partial: "optional?"
"scheme?"
.
function_arglist_nonbackup
288 function_arglist_partial: "optional?"
"scheme?"
.
function_arglist_nonbackup
288 function_arglist_partial: "optional?"
"scheme?"
.
function_arglist_nonbackup
288 function_arglist_partial: "optional?"
"scheme?"
.
function_arglist_nonbackup
288 function_arglist_partial: "optional?"
"scheme?"
.
function_arglist_nonbackup
288 function_arglist_partial: "optional?"
"scheme?"
.
function_arglist_nonbackup
288 function_arglist_partial: "optional?"
"scheme?"
function_arglist_nonbackup
.
288 function_arglist_partial: "optional?"
"scheme?"
function_arglist_nonbackup
.
288 function_arglist_partial: "optional?"
"scheme?"
function_arglist_nonbackup
.
288 function_arglist_partial: "optional?"
"scheme?"
function_arglist_nonbackup
.
288 function_arglist_partial: "optional?"
"scheme?"
function_arglist_nonbackup
.
288 function_arglist_partial: "optional?"
"scheme?"
function_arglist_nonbackup
.
288 function_arglist_partial: "optional?"
"scheme?"
function_arglist_nonbackup
.
288 function_arglist_partial: "optional?"
"scheme?"
function_arglist_nonbackup
.
288 function_arglist_partial: "optional?"
.
"scheme?"
function_arglist_nonbackup
288 function_arglist_partial: "optional?"
.
"scheme?"
function_arglist_nonbackup
288 function_arglist_partial: "optional?"
.
"scheme?"
function_arglist_nonbackup
288 function_arglist_partial: "optional?"
.
"scheme?"
function_arglist_nonbackup
288 function_arglist_partial: "optional?"
.
"scheme?"
function_arglist_nonbackup
288 function_arglist_partial: "optional?"
.
"scheme?"
function_arglist_nonbackup
288 function_arglist_partial: "optional?"
.
"scheme?"
function_arglist_nonbackup
288 function_arglist_partial: "optional?"
.
"scheme?"
function_arglist_nonbackup
289 | "optional?"
"scheme?"
.
function_arglist_partial
289 | "optional?"
"scheme?"
.
function_arglist_partial
289 | "optional?"
"scheme?"
.
function_arglist_partial
289 | "optional?"
"scheme?"
.
function_arglist_partial
289 | "optional?"
"scheme?"
.
function_arglist_partial
289 | "optional?"
"scheme?"
.
function_arglist_partial
289 | "optional?"
"scheme?"
.
function_arglist_partial
289 | "optional?"
"scheme?"
.
function_arglist_partial
289 | "optional?"
.
"scheme?"
function_arglist_partial
289 | "optional?"
.
"scheme?"
function_arglist_partial
289 | "optional?"
.
"scheme?"
function_arglist_partial
289 | "optional?"
.
"scheme?"
function_arglist_partial
289 | "optional?"
.
"scheme?"
function_arglist_partial
289 | "optional?"
.
"scheme?"
function_arglist_partial
289 | "optional?"
.
"scheme?"
function_arglist_partial
289 | "optional?"
.
"scheme?"
function_arglist_partial
289 function_arglist_partial: "optional?"
"scheme?"
function_arglist_partial
.
290 function_arglist_partial_optional: "scheme?"
.
function_arglist_optional
290 function_arglist_partial_optional: "scheme?"
function_arglist_optional
.
291 | "scheme?"
.
function_arglist_partial_optional
291 function_arglist_partial_optional: "scheme?"
function_arglist_partial_optional
.
292 function_arglist_partial_optional: "optional?"
"scheme?"
.
function_arglist_backup
292 function_arglist_partial_optional: "optional?"
"scheme?"
.
function_arglist_backup
292 function_arglist_partial_optional: "optional?"
"scheme?"
function_arglist_backup
.
292 function_arglist_partial_optional: "optional?"
.
"scheme?"
function_arglist_backup
292 function_arglist_partial_optional: "optional?"
.
"scheme?"
function_arglist_backup
293 | "optional?"
"scheme?"
.
function_arglist_partial_optional
293 | "optional?"
"scheme?"
.
function_arglist_partial_optional
293 | "optional?"
.
"scheme?"
function_arglist_partial_optional
293 | "optional?"
.
"scheme?"
function_arglist_partial_optional
293 function_arglist_partial_optional: "optional?"
"scheme?"
function_arglist_partial_optional
.
294 function_arglist_common: EXPECT_NO_MORE_ARGS .
295 function_arglist_common: "scheme?"
.
function_arglist_optional
embedded_scm_arg
295 function_arglist_common: "scheme?"
.
function_arglist_optional
embedded_scm_arg
295 function_arglist_common: "scheme?"
.
function_arglist_optional
embedded_scm_arg
295 function_arglist_common: "scheme?"
.
function_arglist_optional
embedded_scm_arg
295 function_arglist_common: "scheme?"
.
function_arglist_optional
embedded_scm_arg
295 function_arglist_common: "scheme?"
.
function_arglist_optional
embedded_scm_arg
295 function_arglist_common: "scheme?"
function_arglist_optional
.
embedded_scm_arg
295 function_arglist_common: "scheme?"
function_arglist_optional
.
embedded_scm_arg
295 function_arglist_common: "scheme?"
function_arglist_optional
.
embedded_scm_arg
295 function_arglist_common: "scheme?"
function_arglist_optional
.
embedded_scm_arg
295 function_arglist_common: "scheme?"
function_arglist_optional
.
embedded_scm_arg
295 function_arglist_common: "scheme?"
function_arglist_optional
.
embedded_scm_arg
295 function_arglist_common: "scheme?"
function_arglist_optional
embedded_scm_arg
.
296 | "scheme?"
.
function_arglist_optional
bare_number_common
296 | "scheme?"
.
function_arglist_optional
bare_number_common
296 | "scheme?"
.
function_arglist_optional
bare_number_common
296 | "scheme?"
.
function_arglist_optional
bare_number_common
296 | "scheme?"
.
function_arglist_optional
bare_number_common
296 | "scheme?"
.
function_arglist_optional
bare_number_common
296 | "scheme?"
function_arglist_optional
.
bare_number_common
296 | "scheme?"
function_arglist_optional
.
bare_number_common
296 | "scheme?"
function_arglist_optional
.
bare_number_common
296 | "scheme?"
function_arglist_optional
.
bare_number_common
296 | "scheme?"
function_arglist_optional
.
bare_number_common
296 | "scheme?"
function_arglist_optional
.
bare_number_common
296 function_arglist_common: "scheme?"
function_arglist_optional
bare_number_common
.
297 | "scheme?"
.
function_arglist_optional
post_event_nofinger
297 | "scheme?"
.
function_arglist_optional
post_event_nofinger
297 | "scheme?"
.
function_arglist_optional
post_event_nofinger
297 | "scheme?"
.
function_arglist_optional
post_event_nofinger
297 | "scheme?"
.
function_arglist_optional
post_event_nofinger
297 | "scheme?"
.
function_arglist_optional
post_event_nofinger
297 | "scheme?"
function_arglist_optional
.
post_event_nofinger
297 | "scheme?"
function_arglist_optional
.
post_event_nofinger
297 | "scheme?"
function_arglist_optional
.
post_event_nofinger
297 | "scheme?"
function_arglist_optional
.
post_event_nofinger
297 | "scheme?"
function_arglist_optional
.
post_event_nofinger
297 | "scheme?"
function_arglist_optional
.
post_event_nofinger
297 function_arglist_common: "scheme?"
function_arglist_optional
post_event_nofinger
.
298 | "scheme?"
.
function_arglist_optional
'-'
NUMBER_IDENTIFIER
298 | "scheme?"
.
function_arglist_optional
'-'
NUMBER_IDENTIFIER
298 | "scheme?"
.
function_arglist_optional
'-'
NUMBER_IDENTIFIER
298 | "scheme?"
.
function_arglist_optional
'-'
NUMBER_IDENTIFIER
298 | "scheme?"
.
function_arglist_optional
'-'
NUMBER_IDENTIFIER
298 | "scheme?"
.
function_arglist_optional
'-'
NUMBER_IDENTIFIER
298 | "scheme?"
function_arglist_optional
.
'-'
NUMBER_IDENTIFIER
298 | "scheme?"
function_arglist_optional
.
'-'
NUMBER_IDENTIFIER
298 | "scheme?"
function_arglist_optional
.
'-'
NUMBER_IDENTIFIER
298 | "scheme?"
function_arglist_optional
.
'-'
NUMBER_IDENTIFIER
298 | "scheme?"
function_arglist_optional
.
'-'
NUMBER_IDENTIFIER
298 | "scheme?"
function_arglist_optional
.
'-'
NUMBER_IDENTIFIER
298 function_arglist_common: "scheme?"
function_arglist_optional
'-'
.
NUMBER_IDENTIFIER
298 function_arglist_common: "scheme?"
function_arglist_optional
'-'
NUMBER_IDENTIFIER
.
299 function_arglist_common: function_arglist_common_reparse
"(reparsed?)"
.
SCM_ARG
299 function_arglist_common: function_arglist_common_reparse
"(reparsed?)"
SCM_ARG
.
299 function_arglist_common: function_arglist_common_reparse
.
"(reparsed?)"
SCM_ARG
300 | function_arglist_common_reparse
"(reparsed?)"
.
lyric_element_music
300 | function_arglist_common_reparse
.
"(reparsed?)"
lyric_element_music
300 function_arglist_common: function_arglist_common_reparse
"(reparsed?)"
lyric_element_music
.
301 | function_arglist_common_reparse
"(reparsed?)"
.
pitch_or_music
301 | function_arglist_common_reparse
.
"(reparsed?)"
pitch_or_music
301 function_arglist_common: function_arglist_common_reparse
"(reparsed?)"
pitch_or_music
.
302 | function_arglist_common_reparse
"(reparsed?)"
.
bare_number_common
302 | function_arglist_common_reparse
.
"(reparsed?)"
bare_number_common
302 function_arglist_common: function_arglist_common_reparse
"(reparsed?)"
bare_number_common
.
303 | function_arglist_common_reparse
"(reparsed?)"
.
multiplied_duration
303 | function_arglist_common_reparse
.
"(reparsed?)"
multiplied_duration
303 function_arglist_common: function_arglist_common_reparse
"(reparsed?)"
multiplied_duration
.
304 | function_arglist_common_reparse
"(reparsed?)"
.
reparsed_rhythm
304 | function_arglist_common_reparse
.
"(reparsed?)"
reparsed_rhythm
304 function_arglist_common: function_arglist_common_reparse
"(reparsed?)"
reparsed_rhythm
.
305 | function_arglist_common_reparse
"(reparsed?)"
.
symbol_list_arg
305 | function_arglist_common_reparse
.
"(reparsed?)"
symbol_list_arg
305 function_arglist_common: function_arglist_common_reparse
"(reparsed?)"
symbol_list_arg
.
306 function_arglist_common_reparse: "scheme?"
.
function_arglist_optional
SCM_IDENTIFIER
306 function_arglist_common_reparse: "scheme?"
.
function_arglist_optional
SCM_IDENTIFIER
306 function_arglist_common_reparse: "scheme?"
.
function_arglist_optional
SCM_IDENTIFIER
306 function_arglist_common_reparse: "scheme?"
.
function_arglist_optional
SCM_IDENTIFIER
306 function_arglist_common_reparse: "scheme?"
.
function_arglist_optional
SCM_IDENTIFIER
306 function_arglist_common_reparse: "scheme?"
.
function_arglist_optional
SCM_IDENTIFIER
306 function_arglist_common_reparse: "scheme?"
function_arglist_optional
.
SCM_IDENTIFIER
306 function_arglist_common_reparse: "scheme?"
function_arglist_optional
.
SCM_IDENTIFIER
306 function_arglist_common_reparse: "scheme?"
function_arglist_optional
.
SCM_IDENTIFIER
306 function_arglist_common_reparse: "scheme?"
function_arglist_optional
.
SCM_IDENTIFIER
306 function_arglist_common_reparse: "scheme?"
function_arglist_optional
.
SCM_IDENTIFIER
306 function_arglist_common_reparse: "scheme?"
function_arglist_optional
.
SCM_IDENTIFIER
306 function_arglist_common_reparse: "scheme?"
function_arglist_optional
SCM_IDENTIFIER
.
307 | "scheme?"
.
function_arglist_optional
pitch
307 | "scheme?"
.
function_arglist_optional
pitch
307 | "scheme?"
.
function_arglist_optional
pitch
307 | "scheme?"
.
function_arglist_optional
pitch
307 | "scheme?"
.
function_arglist_optional
pitch
307 | "scheme?"
.
function_arglist_optional
pitch
307 | "scheme?"
function_arglist_optional
.
pitch
307 | "scheme?"
function_arglist_optional
.
pitch
307 | "scheme?"
function_arglist_optional
.
pitch
307 | "scheme?"
function_arglist_optional
.
pitch
307 | "scheme?"
function_arglist_optional
.
pitch
307 | "scheme?"
function_arglist_optional
.
pitch
307 function_arglist_common_reparse: "scheme?"
function_arglist_optional
pitch
.
308 | "scheme?"
.
function_arglist_optional
steno_tonic_pitch
308 | "scheme?"
.
function_arglist_optional
steno_tonic_pitch
308 | "scheme?"
.
function_arglist_optional
steno_tonic_pitch
308 | "scheme?"
.
function_arglist_optional
steno_tonic_pitch
308 | "scheme?"
.
function_arglist_optional
steno_tonic_pitch
308 | "scheme?"
.
function_arglist_optional
steno_tonic_pitch
308 | "scheme?"
function_arglist_optional
.
steno_tonic_pitch
308 | "scheme?"
function_arglist_optional
.
steno_tonic_pitch
308 | "scheme?"
function_arglist_optional
.
steno_tonic_pitch
308 | "scheme?"
function_arglist_optional
.
steno_tonic_pitch
308 | "scheme?"
function_arglist_optional
.
steno_tonic_pitch
308 | "scheme?"
function_arglist_optional
.
steno_tonic_pitch
308 function_arglist_common_reparse: "scheme?"
function_arglist_optional
steno_tonic_pitch
.
309 | "scheme?"
.
function_arglist_optional
STRING
309 | "scheme?"
.
function_arglist_optional
STRING
309 | "scheme?"
.
function_arglist_optional
STRING
309 | "scheme?"
.
function_arglist_optional
STRING
309 | "scheme?"
.
function_arglist_optional
STRING
309 | "scheme?"
.
function_arglist_optional
STRING
309 | "scheme?"
function_arglist_optional
.
STRING
309 | "scheme?"
function_arglist_optional
.
STRING
309 | "scheme?"
function_arglist_optional
.
STRING
309 | "scheme?"
function_arglist_optional
.
STRING
309 | "scheme?"
function_arglist_optional
.
STRING
309 | "scheme?"
function_arglist_optional
.
STRING
309 function_arglist_common_reparse: "scheme?"
function_arglist_optional
STRING
.
310 | "scheme?"
.
function_arglist_optional
SYMBOL
310 | "scheme?"
.
function_arglist_optional
SYMBOL
310 | "scheme?"
.
function_arglist_optional
SYMBOL
310 | "scheme?"
.
function_arglist_optional
SYMBOL
310 | "scheme?"
.
function_arglist_optional
SYMBOL
310 | "scheme?"
.
function_arglist_optional
SYMBOL
310 | "scheme?"
function_arglist_optional
.
SYMBOL
310 | "scheme?"
function_arglist_optional
.
SYMBOL
310 | "scheme?"
function_arglist_optional
.
SYMBOL
310 | "scheme?"
function_arglist_optional
.
SYMBOL
310 | "scheme?"
function_arglist_optional
.
SYMBOL
310 | "scheme?"
function_arglist_optional
.
SYMBOL
310 function_arglist_common_reparse: "scheme?"
function_arglist_optional
SYMBOL
.
311 | "scheme?"
.
function_arglist_optional
full_markup
311 | "scheme?"
.
function_arglist_optional
full_markup
311 | "scheme?"
.
function_arglist_optional
full_markup
311 | "scheme?"
.
function_arglist_optional
full_markup
311 | "scheme?"
.
function_arglist_optional
full_markup
311 | "scheme?"
.
function_arglist_optional
full_markup
311 | "scheme?"
function_arglist_optional
.
full_markup
311 | "scheme?"
function_arglist_optional
.
full_markup
311 | "scheme?"
function_arglist_optional
.
full_markup
311 | "scheme?"
function_arglist_optional
.
full_markup
311 | "scheme?"
function_arglist_optional
.
full_markup
311 | "scheme?"
function_arglist_optional
.
full_markup
311 function_arglist_common_reparse: "scheme?"
function_arglist_optional
full_markup
.
312 | "scheme?"
.
function_arglist_optional
UNSIGNED
312 | "scheme?"
.
function_arglist_optional
UNSIGNED
312 | "scheme?"
.
function_arglist_optional
UNSIGNED
312 | "scheme?"
.
function_arglist_optional
UNSIGNED
312 | "scheme?"
.
function_arglist_optional
UNSIGNED
312 | "scheme?"
.
function_arglist_optional
UNSIGNED
312 | "scheme?"
function_arglist_optional
.
UNSIGNED
312 | "scheme?"
function_arglist_optional
.
UNSIGNED
312 | "scheme?"
function_arglist_optional
.
UNSIGNED
312 | "scheme?"
function_arglist_optional
.
UNSIGNED
312 | "scheme?"
function_arglist_optional
.
UNSIGNED
312 | "scheme?"
function_arglist_optional
.
UNSIGNED
312 function_arglist_common_reparse: "scheme?"
function_arglist_optional
UNSIGNED
.
313 | "scheme?"
.
function_arglist_optional
DURATION_IDENTIFIER
313 | "scheme?"
.
function_arglist_optional
DURATION_IDENTIFIER
313 | "scheme?"
.
function_arglist_optional
DURATION_IDENTIFIER
313 | "scheme?"
.
function_arglist_optional
DURATION_IDENTIFIER
313 | "scheme?"
.
function_arglist_optional
DURATION_IDENTIFIER
313 | "scheme?"
.
function_arglist_optional
DURATION_IDENTIFIER
313 | "scheme?"
function_arglist_optional
.
DURATION_IDENTIFIER
313 | "scheme?"
function_arglist_optional
.
DURATION_IDENTIFIER
313 | "scheme?"
function_arglist_optional
.
DURATION_IDENTIFIER
313 | "scheme?"
function_arglist_optional
.
DURATION_IDENTIFIER
313 | "scheme?"
function_arglist_optional
.
DURATION_IDENTIFIER
313 | "scheme?"
function_arglist_optional
.
DURATION_IDENTIFIER
313 function_arglist_common_reparse: "scheme?"
function_arglist_optional
DURATION_IDENTIFIER
.
314 | "scheme?"
.
function_arglist_optional
'-'
UNSIGNED
314 | "scheme?"
.
function_arglist_optional
'-'
UNSIGNED
314 | "scheme?"
.
function_arglist_optional
'-'
UNSIGNED
314 | "scheme?"
.
function_arglist_optional
'-'
UNSIGNED
314 | "scheme?"
.
function_arglist_optional
'-'
UNSIGNED
314 | "scheme?"
.
function_arglist_optional
'-'
UNSIGNED
314 | "scheme?"
function_arglist_optional
.
'-'
UNSIGNED
314 | "scheme?"
function_arglist_optional
.
'-'
UNSIGNED
314 | "scheme?"
function_arglist_optional
.
'-'
UNSIGNED
314 | "scheme?"
function_arglist_optional
.
'-'
UNSIGNED
314 | "scheme?"
function_arglist_optional
.
'-'
UNSIGNED
314 | "scheme?"
function_arglist_optional
.
'-'
UNSIGNED
314 function_arglist_common_reparse: "scheme?"
function_arglist_optional
'-'
.
UNSIGNED
314 function_arglist_common_reparse: "scheme?"
function_arglist_optional
'-'
UNSIGNED
.
315 | "scheme?"
.
function_arglist_optional
'-'
REAL
315 | "scheme?"
.
function_arglist_optional
'-'
REAL
315 | "scheme?"
.
function_arglist_optional
'-'
REAL
315 | "scheme?"
.
function_arglist_optional
'-'
REAL
315 | "scheme?"
.
function_arglist_optional
'-'
REAL
315 | "scheme?"
.
function_arglist_optional
'-'
REAL
315 | "scheme?"
function_arglist_optional
'-'
.
REAL
315 | "scheme?"
function_arglist_optional
.
'-'
REAL
315 | "scheme?"
function_arglist_optional
.
'-'
REAL
315 | "scheme?"
function_arglist_optional
.
'-'
REAL
315 | "scheme?"
function_arglist_optional
.
'-'
REAL
315 | "scheme?"
function_arglist_optional
.
'-'
REAL
315 | "scheme?"
function_arglist_optional
.
'-'
REAL
315 function_arglist_common_reparse: "scheme?"
function_arglist_optional
'-'
REAL
.
316 function_arglist_optional: function_arglist_backup .
317 function_arglist_optional: "optional?"
"scheme?"
.
function_arglist_skip_backup
"\default"
317 function_arglist_optional: "optional?"
"scheme?"
.
function_arglist_skip_backup
"\default"
317 function_arglist_optional: "optional?"
"scheme?"
function_arglist_skip_backup
"\default"
.
317 function_arglist_optional: "optional?"
"scheme?"
function_arglist_skip_backup
.
"\default"
317 function_arglist_optional: "optional?"
.
"scheme?"
function_arglist_skip_backup
"\default"
317 function_arglist_optional: "optional?"
.
"scheme?"
function_arglist_skip_backup
"\default"
318 function_arglist_optional: function_arglist_skip_backup
"(backed-up?)"
.
318 function_arglist_optional: function_arglist_skip_backup
.
"(backed-up?)"
319 function_arglist_skip_backup: function_arglist_backup .
319 function_arglist_skip_backup: function_arglist_backup .
319 function_arglist_skip_backup: function_arglist_backup .
320 function_arglist_skip_backup: "optional?"
"scheme?"
.
function_arglist_skip_backup
320 function_arglist_skip_backup: "optional?"
"scheme?"
.
function_arglist_skip_backup
320 function_arglist_skip_backup: "optional?"
"scheme?"
.
function_arglist_skip_backup
320 function_arglist_skip_backup: "optional?"
"scheme?"
.
function_arglist_skip_backup
320 function_arglist_skip_backup: "optional?"
"scheme?"
function_arglist_skip_backup
.
320 function_arglist_skip_backup: "optional?"
"scheme?"
function_arglist_skip_backup
.
320 function_arglist_skip_backup: "optional?"
.
"scheme?"
function_arglist_skip_backup
320 function_arglist_skip_backup: "optional?"
.
"scheme?"
function_arglist_skip_backup
320 function_arglist_skip_backup: "optional?"
.
"scheme?"
function_arglist_skip_backup
320 function_arglist_skip_backup: "optional?"
.
"scheme?"
function_arglist_skip_backup
321 music_function_call: MUSIC_FUNCTION . function_arglist
321 music_function_call: MUSIC_FUNCTION . function_arglist
321 music_function_call: MUSIC_FUNCTION function_arglist .
323 optional_id: '=' . simple_string
323 optional_id: '=' simple_string .
325 lyric_mode_music: $@9 . grouped_music_list
325 lyric_mode_music: $@9 grouped_music_list .
326 lyric_mode_music: MUSIC_IDENTIFIER .
327 mode_changed_music: mode_changing_head . grouped_music_list
327 mode_changed_music: mode_changing_head grouped_music_list .
328 mode_changed_music: mode_changing_head_with_context
.
optional_context_mods
grouped_music_list
328 mode_changed_music: mode_changing_head_with_context
optional_context_mods
.
grouped_music_list
328 mode_changed_music: mode_changing_head_with_context
optional_context_mods
grouped_music_list
.
329 mode_changing_head: "\notemode" .
330 mode_changing_head: "\drummode" .
331 mode_changing_head: "\figuremode" .
332 mode_changing_head: "\chordmode" .
333 mode_changing_head: "\lyricmode" .
334 mode_changing_head_with_context: "\drums" .
335 mode_changing_head_with_context: "\figures" .
336 mode_changing_head_with_context: "\chords" .
337 mode_changing_head_with_context: "\lyrics" .
338 context_change: "\change" . symbol '=' simple_string
338 context_change: "\change" symbol '=' . simple_string
338 context_change: "\change" symbol '=' simple_string .
338 context_change: "\change" symbol . '=' simple_string
339 property_path: symbol_list_rev .
340 property_operation: symbol '=' . scalar
340 property_operation: symbol '=' scalar .
340 property_operation: symbol . '=' scalar
341 property_operation: "\unset" . symbol
341 property_operation: "\unset" symbol .
342 property_operation: "\override" . revert_arg '=' scalar
342 property_operation: "\override" revert_arg '=' . scalar
342 property_operation: "\override" revert_arg '=' scalar .
342 property_operation: "\override" revert_arg . '=' scalar
343 property_operation: "\revert" . revert_arg
343 property_operation: "\revert" revert_arg .
344 revert_arg: revert_arg_backup "(backed-up?)" . symbol_list_arg
344 revert_arg: revert_arg_backup "(backed-up?)" symbol_list_arg .
344 revert_arg: revert_arg_backup . "(backed-up?)" symbol_list_arg
345 revert_arg_backup: revert_arg_part .
346 revert_arg_part: symbol_list_part .
347 revert_arg_part: revert_arg_backup
"(backed-up?)"
.
SCM_ARG
'.'
symbol_list_part
347 revert_arg_part: revert_arg_backup
"(backed-up?)"
SCM_ARG
'.'
.
symbol_list_part
347 revert_arg_part: revert_arg_backup
"(backed-up?)"
SCM_ARG
'.'
symbol_list_part
.
347 revert_arg_part: revert_arg_backup
"(backed-up?)"
SCM_ARG
.
'.'
symbol_list_part
347 revert_arg_part: revert_arg_backup
.
"(backed-up?)"
SCM_ARG
'.'
symbol_list_part
348 | revert_arg_backup
"(backed-up?)"
.
SCM_ARG
','
symbol_list_part
348 | revert_arg_backup
"(backed-up?)"
SCM_ARG
.
','
symbol_list_part
348 | revert_arg_backup
.
"(backed-up?)"
SCM_ARG
','
symbol_list_part
348 revert_arg_part: revert_arg_backup
"(backed-up?)"
SCM_ARG
','
.
symbol_list_part
348 revert_arg_part: revert_arg_backup
"(backed-up?)"
SCM_ARG
','
symbol_list_part
.
349 | revert_arg_backup
"(backed-up?)"
.
SCM_ARG
symbol_list_part
349 | revert_arg_backup
"(backed-up?)"
SCM_ARG
.
symbol_list_part
349 | revert_arg_backup
.
"(backed-up?)"
SCM_ARG
symbol_list_part
349 revert_arg_part: revert_arg_backup
"(backed-up?)"
SCM_ARG
symbol_list_part
.
350 context_def_mod: "\consists" .
351 context_def_mod: "\remove" .
352 context_def_mod: "\accepts" .
353 context_def_mod: "\defaultchild" .
354 context_def_mod: "\denies" .
355 context_def_mod: "\alias" .
356 context_def_mod: "\type" .
357 context_def_mod: "\description" .
358 context_def_mod: "\name" .
359 context_mod: property_operation .
360 context_mod: context_def_mod . STRING
360 context_mod: context_def_mod STRING .
361 | context_def_mod . SYMBOL
361 context_mod: context_def_mod SYMBOL .
362 | context_def_mod . embedded_scm
362 context_mod: context_def_mod embedded_scm .
363 grob_prop_spec: symbol_list_rev .
364 grob_prop_path: grob_prop_spec .
365 | grob_prop_spec . property_path
365 grob_prop_path: grob_prop_spec property_path .
366 context_prop_spec: symbol_list_rev .
367 simple_revert_context: symbol_list_part .
368 music_property_def: "\override" . grob_prop_path '=' scalar
368 music_property_def: "\override" . grob_prop_path '=' scalar
368 music_property_def: "\override" grob_prop_path '=' . scalar
368 music_property_def: "\override" grob_prop_path '=' . scalar
368 music_property_def: "\override" grob_prop_path '=' scalar .
368 music_property_def: "\override" grob_prop_path . '=' scalar
368 music_property_def: "\override" grob_prop_path . '=' scalar
369 music_property_def: "\revert" . simple_revert_context revert_arg
369 music_property_def: "\revert" simple_revert_context . revert_arg
369 music_property_def: "\revert" simple_revert_context revert_arg .
370 music_property_def: "\set" . context_prop_spec '=' scalar
370 music_property_def: "\set" . context_prop_spec '=' scalar
370 music_property_def: "\set" context_prop_spec '=' . scalar
370 music_property_def: "\set" context_prop_spec '=' . scalar
370 music_property_def: "\set" context_prop_spec '=' scalar .
370 music_property_def: "\set" context_prop_spec . '=' scalar
370 music_property_def: "\set" context_prop_spec . '=' scalar
371 music_property_def: "\unset" . context_prop_spec
371 music_property_def: "\unset" context_prop_spec .
372 string: STRING .
372 string: STRING .
373 string: SYMBOL .
373 string: SYMBOL .
374 string: full_markup .
374 string: full_markup .
375 text: STRING .
376 text: SYMBOL .
377 text: full_markup .
378 text: embedded_scm_bare .
379 simple_string: STRING .
379 simple_string: STRING .
380 simple_string: SYMBOL .
380 simple_string: SYMBOL .
381 simple_string: embedded_scm_bare .
381 simple_string: embedded_scm_bare .
382 symbol: STRING .
382 symbol: STRING .
383 symbol: SYMBOL .
383 symbol: SYMBOL .
384 symbol: embedded_scm_bare .
384 symbol: embedded_scm_bare .
384 symbol: embedded_scm_bare .
385 scalar: embedded_scm_arg .
386 scalar: pitch_or_music .
387 scalar: SCM_IDENTIFIER .
388 scalar: bare_number .
389 scalar: '-' . bare_number
389 scalar: '-' bare_number .
390 scalar: string .
391 scalar: symbol_list_part_bare '.' . property_path
391 scalar: symbol_list_part_bare '.' property_path .
391 scalar: symbol_list_part_bare . '.' property_path
392 | symbol_list_part_bare . ',' property_path
392 scalar: symbol_list_part_bare ',' . property_path
392 scalar: symbol_list_part_bare ',' property_path .
393 event_chord: simple_element . post_events
393 event_chord: simple_element post_events .
394 event_chord: CHORD_REPETITION . optional_notemode_duration post_events
394 event_chord: CHORD_REPETITION optional_notemode_duration . post_events
394 event_chord: CHORD_REPETITION optional_notemode_duration post_events .
395 event_chord: MULTI_MEASURE_REST
.
optional_notemode_duration
post_events
395 event_chord: MULTI_MEASURE_REST
optional_notemode_duration
.
post_events
395 event_chord: MULTI_MEASURE_REST
optional_notemode_duration
post_events
.
396 event_chord: tempo_event .
397 event_chord: note_chord_element .
398 note_chord_element: chord_body . optional_notemode_duration post_events
398 note_chord_element: chord_body optional_notemode_duration . post_events
398 note_chord_element: chord_body optional_notemode_duration post_events .
399 chord_body: "<" . chord_body_elements ">"
399 chord_body: "<" chord_body_elements ">" .
399 chord_body: "<" chord_body_elements . ">"
400 chord_body: FIGURE_OPEN . figure_list FIGURE_CLOSE
400 chord_body: FIGURE_OPEN figure_list . FIGURE_CLOSE
400 chord_body: FIGURE_OPEN figure_list FIGURE_CLOSE .
402 chord_body_elements: chord_body_elements . chord_body_element
402 chord_body_elements: chord_body_elements chord_body_element .
403 chord_body_element: pitch_or_tonic_pitch
.
exclamations
questions
octave_check
post_events
403 chord_body_element: pitch_or_tonic_pitch
exclamations
.
questions
octave_check
post_events
403 chord_body_element: pitch_or_tonic_pitch
exclamations
questions
.
octave_check
post_events
403 chord_body_element: pitch_or_tonic_pitch
exclamations
questions
octave_check
.
post_events
403 chord_body_element: pitch_or_tonic_pitch
exclamations
questions
octave_check
post_events
.
404 chord_body_element: DRUM_PITCH . post_events
404 chord_body_element: DRUM_PITCH post_events .
405 chord_body_element: music_function_chord_body .
406 chord_body_element: post_event .
407 music_function_chord_body: music_function_call .
408 music_function_chord_body: MUSIC_IDENTIFIER .
409 music_function_chord_body: embedded_scm .
410 event_function_event: EVENT_FUNCTION . function_arglist
410 event_function_event: EVENT_FUNCTION . function_arglist
410 event_function_event: EVENT_FUNCTION function_arglist .
412 post_events: post_events . post_event
412 post_events: post_events . post_event
412 post_events: post_events . post_event
412 post_events: post_events . post_event
412 post_events: post_events . post_event
412 post_events: post_events . post_event
412 post_events: post_events . post_event
412 post_events: post_events . post_event
412 post_events: post_events . post_event
412 post_events: post_events . post_event
412 post_events: post_events . post_event
412 post_events: post_events . post_event
412 post_events: post_events . post_event
412 post_events: post_events post_event .
413 post_event_nofinger: direction_less_event .
414 post_event_nofinger: script_dir . music_function_call
414 post_event_nofinger: script_dir music_function_call .
415 post_event_nofinger: "--" .
416 post_event_nofinger: "__" .
417 | script_dir . direction_reqd_event
417 post_event_nofinger: script_dir direction_reqd_event .
418 | script_dir . direction_less_event
418 post_event_nofinger: script_dir direction_less_event .
419 post_event_nofinger: '^' . fingering
419 post_event_nofinger: '^' fingering .
420 post_event_nofinger: '_' . fingering
420 post_event_nofinger: '_' fingering .
421 post_event: post_event_nofinger .
422 post_event: '-' . fingering
422 post_event: '-' . fingering
422 post_event: '-' fingering .
423 string_number_event: E_UNSIGNED .
424 direction_less_event: string_number_event .
425 direction_less_event: EVENT_IDENTIFIER .
426 direction_less_event: tremolo_type .
427 direction_less_event: event_function_event .
428 direction_reqd_event: gen_text_def .
429 direction_reqd_event: script_abbreviation .
431 octave_check: '=' . quotes
431 octave_check: '=' quotes .
433 quotes: sub_quotes .
434 quotes: sup_quotes .
435 sup_quotes: '\'' .
436 sup_quotes: sup_quotes '\'' .
436 sup_quotes: sup_quotes . '\''
437 sub_quotes: ',' .
438 sub_quotes: sub_quotes ',' .
438 sub_quotes: sub_quotes . ','
439 steno_pitch: NOTENAME_PITCH . quotes
439 steno_pitch: NOTENAME_PITCH quotes .
440 steno_tonic_pitch: TONICNAME_PITCH . quotes
440 steno_tonic_pitch: TONICNAME_PITCH quotes .
441 pitch: steno_pitch .
442 pitch: PITCH_IDENTIFIER . quotes
442 pitch: PITCH_IDENTIFIER quotes .
443 pitch_or_tonic_pitch: pitch .
444 pitch_or_tonic_pitch: steno_tonic_pitch .
445 gen_text_def: full_markup .
446 gen_text_def: STRING .
447 gen_text_def: SYMBOL .
448 gen_text_def: embedded_scm .
449 fingering: UNSIGNED .
449 fingering: UNSIGNED .
450 script_abbreviation: '^' .
451 script_abbreviation: '+' .
452 script_abbreviation: '-' .
453 script_abbreviation: '!' .
454 script_abbreviation: ">" .
455 script_abbreviation: '.' .
456 script_abbreviation: '_' .
457 script_dir: '_' .
458 script_dir: '^' .
459 script_dir: '-' .
459 script_dir: '-' .
459 script_dir: '-' .
459 script_dir: '-' .
459 script_dir: '-' .
459 script_dir: '-' .
461 maybe_notemode_duration: multiplied_duration .
462 optional_notemode_duration: maybe_notemode_duration .
462 optional_notemode_duration: maybe_notemode_duration .
463 steno_duration: UNSIGNED . dots
463 steno_duration: UNSIGNED . dots
463 steno_duration: UNSIGNED dots .
464 steno_duration: DURATION_IDENTIFIER . dots
464 steno_duration: DURATION_IDENTIFIER dots .
465 multiplied_duration: steno_duration . multipliers
465 multiplied_duration: steno_duration multipliers .
467 dots: dots '.' .
467 dots: dots . '.'
467 dots: dots . '.'
467 dots: dots . '.'
469 multipliers: multipliers '*' . UNSIGNED
469 multipliers: multipliers '*' UNSIGNED .
469 multipliers: multipliers . '*' UNSIGNED
469 multipliers: multipliers . '*' UNSIGNED
470 | multipliers '*' . FRACTION
470 | multipliers . '*' FRACTION
470 | multipliers . '*' FRACTION
470 multipliers: multipliers '*' FRACTION .
471 tremolo_type: ':' .
472 | ':' . UNSIGNED
472 tremolo_type: ':' UNSIGNED .
473 bass_number: UNSIGNED .
474 bass_number: STRING .
475 bass_number: SYMBOL .
476 bass_number: full_markup .
477 bass_number: embedded_scm_bare .
478 figured_bass_alteration: '-' .
479 figured_bass_alteration: '+' .
480 figured_bass_alteration: '!' .
481 bass_figure: "_" .
482 bass_figure: bass_number .
483 bass_figure: bass_figure ']' .
483 bass_figure: bass_figure . ']'
483 bass_figure: bass_figure . ']'
484 | bass_figure . figured_bass_alteration
484 | bass_figure . figured_bass_alteration
484 bass_figure: bass_figure figured_bass_alteration .
485 | bass_figure . figured_bass_modification
485 | bass_figure . figured_bass_modification
485 bass_figure: bass_figure figured_bass_modification .
486 figured_bass_modification: "\+" .
487 figured_bass_modification: "\!" .
488 figured_bass_modification: '/' .
489 figured_bass_modification: "\" .
490 br_bass_figure: bass_figure .
491 br_bass_figure: '[' . bass_figure
491 br_bass_figure: '[' bass_figure .
493 figure_list: figure_list . br_bass_figure
493 figure_list: figure_list br_bass_figure .
495 optional_rest: "\rest" .
496 pitch_or_music: pitch
.
exclamations
questions
octave_check
maybe_notemode_duration
optional_rest
post_events
496 pitch_or_music: pitch
exclamations
.
questions
octave_check
maybe_notemode_duration
optional_rest
post_events
496 pitch_or_music: pitch
exclamations
questions
.
octave_check
maybe_notemode_duration
optional_rest
post_events
496 pitch_or_music: pitch
exclamations
questions
octave_check
.
maybe_notemode_duration
optional_rest
post_events
496 pitch_or_music: pitch
exclamations
questions
octave_check
maybe_notemode_duration
.
optional_rest
post_events
496 pitch_or_music: pitch
exclamations
questions
octave_check
maybe_notemode_duration
optional_rest
.
post_events
496 pitch_or_music: pitch
exclamations
questions
octave_check
maybe_notemode_duration
optional_rest
post_events
.
497 pitch_or_music: new_chord . post_events
497 pitch_or_music: new_chord post_events .
498 simple_element: DRUM_PITCH . optional_notemode_duration
498 simple_element: DRUM_PITCH optional_notemode_duration .
499 simple_element: RESTNAME . optional_notemode_duration
499 simple_element: RESTNAME optional_notemode_duration .
500 lyric_element: full_markup .
500 lyric_element: full_markup .
501 lyric_element: SYMBOL .
501 lyric_element: SYMBOL .
502 lyric_element: STRING .
502 lyric_element: STRING .
503 lyric_element: LYRIC_ELEMENT .
504 lyric_element_music: lyric_element
.
optional_notemode_duration
post_events
504 lyric_element_music: lyric_element
optional_notemode_duration
.
post_events
504 lyric_element_music: lyric_element
optional_notemode_duration
post_events
.
505 new_chord: steno_tonic_pitch . maybe_notemode_duration
505 new_chord: steno_tonic_pitch maybe_notemode_duration .
506 | steno_tonic_pitch
.
optional_notemode_duration
chord_separator
chord_items
506 new_chord: steno_tonic_pitch
optional_notemode_duration
.
chord_separator
chord_items
506 new_chord: steno_tonic_pitch
optional_notemode_duration
chord_separator
.
chord_items
506 new_chord: steno_tonic_pitch
optional_notemode_duration
chord_separator
chord_items
.
508 chord_items: chord_items . chord_item
508 chord_items: chord_items chord_item .
509 chord_separator: ":" .
510 chord_separator: "^" .
511 chord_separator: "/" . steno_tonic_pitch
511 chord_separator: "/" steno_tonic_pitch .
512 chord_separator: "/+" . steno_tonic_pitch
512 chord_separator: "/+" steno_tonic_pitch .
513 chord_item: chord_separator .
514 chord_item: step_numbers .
515 chord_item: CHORD_MODIFIER .
516 step_numbers: step_number .
517 step_numbers: step_numbers '.' . step_number
517 step_numbers: step_numbers '.' step_number .
517 step_numbers: step_numbers . '.' step_number
518 step_number: UNSIGNED .
519 | UNSIGNED . '+'
519 step_number: UNSIGNED '+' .
520 | UNSIGNED . "-"
520 step_number: UNSIGNED "-" .
521 tempo_range: unsigned_number .
522 | unsigned_number . '-' unsigned_number
522 tempo_range: unsigned_number '-' . unsigned_number
522 tempo_range: unsigned_number '-' unsigned_number .
523 number_expression: number_expression '+' . number_term
523 number_expression: number_expression '+' number_term .
523 number_expression: number_expression . '+' number_term
524 | number_expression . '-' number_term
524 number_expression: number_expression '-' . number_term
524 number_expression: number_expression '-' number_term .
525 number_expression: number_term .
526 number_term: number_factor .
527 | number_factor . '*' number_factor
527 number_term: number_factor '*' . number_factor
527 number_term: number_factor '*' number_factor .
528 | number_factor . '/' number_factor
528 number_term: number_factor '/' . number_factor
528 number_term: number_factor '/' number_factor .
529 number_factor: '-' . number_factor
529 number_factor: '-' . number_factor
529 number_factor: '-' number_factor .
530 number_factor: bare_number .
531 bare_number_common: REAL .
532 bare_number_common: NUMBER_IDENTIFIER .
533 | REAL . NUMBER_IDENTIFIER
533 bare_number_common: REAL NUMBER_IDENTIFIER .
534 bare_number: bare_number_common .
535 bare_number: UNSIGNED .
535 bare_number: UNSIGNED .
536 | UNSIGNED . NUMBER_IDENTIFIER
536 | UNSIGNED . NUMBER_IDENTIFIER
536 bare_number: UNSIGNED NUMBER_IDENTIFIER .
537 unsigned_number: UNSIGNED .
538 unsigned_number: NUMBER_IDENTIFIER .
539 unsigned_number: embedded_scm .
541 exclamations: exclamations '!' .
541 exclamations: exclamations . '!'
541 exclamations: exclamations . '!'
543 questions: questions '?' .
543 questions: questions . '?'
543 questions: questions . '?'
545 full_markup_list: "\markuplist" $@10 . markup_list
545 full_markup_list: "\markuplist" $@10 markup_list .
545 full_markup_list: "\markuplist" . $@10 markup_list
546 markup_mode: "\markup" .
547 markup_mode_word: markup_mode . markup_word
547 markup_mode_word: markup_mode . markup_word
547 markup_mode_word: markup_mode . markup_word
547 markup_mode_word: markup_mode markup_word .
548 full_markup: markup_mode . markup_top
548 full_markup: markup_mode . markup_top
548 full_markup: markup_mode markup_top .
549 full_markup: markup_mode_word .
549 full_markup: markup_mode_word .
550 partial_markup: markup_mode . markup_partial_function "\etc"
550 partial_markup: markup_mode markup_partial_function "\etc" .
550 partial_markup: markup_mode markup_partial_function . "\etc"
551 markup_top: markup_list .
552 markup_top: markup_head_1_list . simple_markup
552 markup_top: markup_head_1_list . simple_markup
552 markup_top: markup_head_1_list simple_markup .
553 markup_top: simple_markup_noword .
555 markup_scm: embedded_scm $@11 "(backed-up?)" .
555 markup_scm: embedded_scm $@11 . "(backed-up?)"
555 markup_scm: embedded_scm . $@11 "(backed-up?)"
556 markup_list: markup_composed_list .
557 markup_list: markup_uncomposed_list .
558 markup_uncomposed_list: markup_braced_list .
559 markup_uncomposed_list: markup_command_list .
560 markup_uncomposed_list: markup_scm . MARKUPLIST_IDENTIFIER
560 markup_uncomposed_list: markup_scm . MARKUPLIST_IDENTIFIER
560 markup_uncomposed_list: markup_scm MARKUPLIST_IDENTIFIER .
562 markup_uncomposed_list: "\score-lines" $@12 '{' . score_body '}'
562 markup_uncomposed_list: "\score-lines" $@12 '{' score_body '}' .
562 markup_uncomposed_list: "\score-lines" $@12 '{' score_body . '}'
562 markup_uncomposed_list: "\score-lines" $@12 . '{' score_body '}'
562 markup_uncomposed_list: "\score-lines" . $@12 '{' score_body '}'
563 markup_composed_list: markup_head_1_list . markup_uncomposed_list
563 markup_composed_list: markup_head_1_list . markup_uncomposed_list
563 markup_composed_list: markup_head_1_list . markup_uncomposed_list
563 markup_composed_list: markup_head_1_list . markup_uncomposed_list
563 markup_composed_list: markup_head_1_list markup_uncomposed_list .
564 markup_braced_list: '{' . markup_braced_list_body '}'
564 markup_braced_list: '{' markup_braced_list_body '}' .
564 markup_braced_list: '{' markup_braced_list_body . '}'
566 markup_braced_list_body: markup_braced_list_body . markup
566 markup_braced_list_body: markup_braced_list_body markup .
567 | markup_braced_list_body . markup_list
567 markup_braced_list_body: markup_braced_list_body markup_list .
568 markup_command_list: MARKUP_LIST_FUNCTION
.
markup_command_list_arguments
568 markup_command_list: MARKUP_LIST_FUNCTION
markup_command_list_arguments
.
570 markup_command_embedded_lilypond: '{' $@13 . embedded_lilypond '}'
570 markup_command_embedded_lilypond: '{' $@13 embedded_lilypond '}' .
570 markup_command_embedded_lilypond: '{' $@13 embedded_lilypond . '}'
570 markup_command_embedded_lilypond: '{' . $@13 embedded_lilypond '}'
571 markup_command_basic_arguments: "markup-list?"
.
markup_command_list_arguments
markup_list
571 markup_command_basic_arguments: "markup-list?"
markup_command_list_arguments
.
markup_list
571 markup_command_basic_arguments: "markup-list?"
markup_command_list_arguments
markup_list
.
572 markup_command_basic_arguments: "scheme?"
.
markup_command_list_arguments
embedded_scm
572 markup_command_basic_arguments: "scheme?"
.
markup_command_list_arguments
embedded_scm
572 markup_command_basic_arguments: "scheme?"
markup_command_list_arguments
.
embedded_scm
572 markup_command_basic_arguments: "scheme?"
markup_command_list_arguments
.
embedded_scm
572 markup_command_basic_arguments: "scheme?"
markup_command_list_arguments
embedded_scm
.
573 | "scheme?"
.
markup_command_list_arguments
markup_command_embedded_lilypond
573 | "scheme?"
.
markup_command_list_arguments
markup_command_embedded_lilypond
573 | "scheme?"
markup_command_list_arguments
.
markup_command_embedded_lilypond
573 | "scheme?"
markup_command_list_arguments
.
markup_command_embedded_lilypond
573 markup_command_basic_arguments: "scheme?"
markup_command_list_arguments
markup_command_embedded_lilypond
.
574 | "scheme?"
.
markup_command_list_arguments
mode_changed_music
574 | "scheme?"
.
markup_command_list_arguments
mode_changed_music
574 | "scheme?"
markup_command_list_arguments
.
mode_changed_music
574 | "scheme?"
markup_command_list_arguments
.
mode_changed_music
574 markup_command_basic_arguments: "scheme?"
markup_command_list_arguments
mode_changed_music
.
575 | "scheme?"
.
markup_command_list_arguments
MUSIC_IDENTIFIER
575 | "scheme?"
.
markup_command_list_arguments
MUSIC_IDENTIFIER
575 | "scheme?"
markup_command_list_arguments
.
MUSIC_IDENTIFIER
575 | "scheme?"
markup_command_list_arguments
.
MUSIC_IDENTIFIER
575 markup_command_basic_arguments: "scheme?"
markup_command_list_arguments
MUSIC_IDENTIFIER
.
576 markup_command_basic_arguments: EXPECT_NO_MORE_ARGS .
577 markup_command_list_arguments: markup_command_basic_arguments .
578 markup_command_list_arguments: "markup?"
.
markup_command_list_arguments
markup
578 markup_command_list_arguments: "markup?"
.
markup_command_list_arguments
markup
578 markup_command_list_arguments: "markup?"
markup_command_list_arguments
.
markup
578 markup_command_list_arguments: "markup?"
markup_command_list_arguments
.
markup
578 markup_command_list_arguments: "markup?"
markup_command_list_arguments
markup
.
579 markup_partial_function: MARKUP_FUNCTION . markup_arglist_partial
579 markup_partial_function: MARKUP_FUNCTION markup_arglist_partial .
580 markup_partial_function: markup_head_1_list
.
MARKUP_FUNCTION
markup_arglist_partial
580 markup_partial_function: markup_head_1_list
MARKUP_FUNCTION
.
markup_arglist_partial
580 markup_partial_function: markup_head_1_list
MARKUP_FUNCTION
markup_arglist_partial
.
581 markup_arglist_partial: "markup?" . markup_arglist_partial
581 markup_arglist_partial: "markup?" . markup_arglist_partial
581 markup_arglist_partial: "markup?" markup_arglist_partial .
582 markup_arglist_partial: "scheme?" . markup_arglist_partial
582 markup_arglist_partial: "scheme?" markup_arglist_partial .
583 | "markup?" . markup_command_list_arguments
583 | "markup?" . markup_command_list_arguments
583 markup_arglist_partial: "markup?" markup_command_list_arguments .
583 markup_arglist_partial: "markup?" markup_command_list_arguments .
584 | "scheme?" . markup_command_list_arguments
584 markup_arglist_partial: "scheme?" markup_command_list_arguments .
585 markup_head_1_item: MARKUP_FUNCTION
"markup?"
.
markup_command_list_arguments
585 markup_head_1_item: MARKUP_FUNCTION
"markup?"
.
markup_command_list_arguments
585 markup_head_1_item: MARKUP_FUNCTION
"markup?"
markup_command_list_arguments
.
585 markup_head_1_item: MARKUP_FUNCTION
"markup?"
markup_command_list_arguments
.
585 markup_head_1_item: MARKUP_FUNCTION
.
"markup?"
markup_command_list_arguments
585 markup_head_1_item: MARKUP_FUNCTION
.
"markup?"
markup_command_list_arguments
585 markup_head_1_item: MARKUP_FUNCTION
.
"markup?"
markup_command_list_arguments
585 markup_head_1_item: MARKUP_FUNCTION
.
"markup?"
markup_command_list_arguments
586 markup_head_1_list: markup_head_1_item .
587 markup_head_1_list: markup_head_1_list . markup_head_1_item
587 markup_head_1_list: markup_head_1_list . markup_head_1_item
587 markup_head_1_list: markup_head_1_list . markup_head_1_item
587 markup_head_1_list: markup_head_1_list . markup_head_1_item
587 markup_head_1_list: markup_head_1_list . markup_head_1_item
587 markup_head_1_list: markup_head_1_list markup_head_1_item .
588 markup_word: STRING .
589 markup_word: SYMBOL .
590 simple_markup: markup_word .
591 simple_markup: simple_markup_noword .
593 simple_markup_noword: "\score" $@14 '{' . score_body '}'
593 simple_markup_noword: "\score" $@14 '{' score_body '}' .
593 simple_markup_noword: "\score" $@14 '{' score_body . '}'
593 simple_markup_noword: "\score" $@14 . '{' score_body '}'
593 simple_markup_noword: "\score" . $@14 '{' score_body '}'
594 simple_markup_noword: MARKUP_FUNCTION . markup_command_basic_arguments
594 simple_markup_noword: MARKUP_FUNCTION . markup_command_basic_arguments
594 simple_markup_noword: MARKUP_FUNCTION . markup_command_basic_arguments
594 simple_markup_noword: MARKUP_FUNCTION markup_command_basic_arguments .
595 simple_markup_noword: markup_scm . MARKUP_IDENTIFIER
595 simple_markup_noword: markup_scm . MARKUP_IDENTIFIER
595 simple_markup_noword: markup_scm MARKUP_IDENTIFIER .
596 markup: markup_head_1_list . simple_markup
596 markup: markup_head_1_list . simple_markup
596 markup: markup_head_1_list simple_markup .
597 markup: simple_markup .
$@1 (131)
on left: 2, on right: 3
$@10 (301)
on left: 544, on right: 545
$@11 (308)
on left: 554, on right: 555
$@12 (311)
on left: 561, on right: 562
$@13 (317)
on left: 569, on right: 570
$@14 (327)
on left: 592, on right: 593
$@2 (146)
on left: 63, on right: 64
$@3 (154)
on left: 106, on right: 107
$@4 (158)
on left: 123, on right: 124
$@5 (161)
on left: 136, on right: 137
$@6 (166)
on left: 147, on right: 148
$@7 (173)
on left: 161, on right: 162
$@8 (187)
on left: 192, on right: 193
$@9 (220)
on left: 324, on right: 325
assignment (148)
on left: 67 68 69 70, on right: 6 59 158
assignment_id (147)
on left: 65 66, on right: 67 68 69
bare_number (296)
on left: 534 535 536, on right: 388 389 530
basic_music (194)
on left: 207 208 209 210 211, on right: 212 218 220
bass_number (274)
on left: 473 474 475 476 477, on right: 482
book_block (156)
on left: 112, on right: 10 36 78
bookpart_block (159)
on left: 126, on right: 11 37 79 116
br_bass_figure (278)
on left: 490 491, on right: 493
braced_music_list (176)
on left: 170, on right: 184 185 186 187
chord_body (244)
on left: 399 400, on right: 398
chord_body_element (246)
on left: 403 404 405 406, on right: 402
chord_body_elements (245)
on left: 401 402, on right: 399 402
chord_item (288)
on left: 513 514 515, on right: 508
chord_items (286)
on left: 507 508, on right: 506 508
chord_separator (287)
on left: 509 510 511 512, on right: 506 513
composite_music (197)
on left: 218 219 220, on right: 14 107 118 131 182
context_change (224)
on left: 338, on right: 191
context_def_spec_block (152)
on left: 104, on right: 35 81 156
context_mod (231)
on left: 359 360 361 362, on right: 109 201
context_mod_arg (153)
on left: 105 107, on right: 111 202
context_mod_list (191)
on left: 200 201 202, on right: 193 201 202
context_modification (186)
on left: 193 194, on right: 32 89 110 199
context_modification_arg (188)
on left: 195 196, on right: 194
context_modification_mods_list (190)
on left: 198 199, on right: 197 199
context_prefix (192)
on left: 203 204, on right: 215 216 217
context_prop_spec (234)
on left: 366, on right: 95 100 370 371
contextable_music (195)
on left: 212 213 214, on right: 215 216
contexted_basic_music (196)
on left: 215 216 217, on right: 217 219
direction_less_event (253)
on left: 424 425 426 427, on right: 413 418
direction_reqd_event (254)
on left: 428 429, on right: 417
dots (271)
on left: 466 467, on right: 252 463 464 467
embedded_lilypond_number (141)
on left: 47 48 49, on right: 47 52
embedded_scm_active (136)
on left: 24 25 26, on right: 18 61 122 135 159
embedded_scm_arg (139)
on left: 43 44 45, on right: 243 262 295 385
embedded_scm_bare (135)
on left: 22 23, on right: 40 233 378 381 384 477
event_chord (242)
on left: 393 394 395 396 397, on right: 189 214
event_function_event (248)
on left: 410, on right: 427
exclamations (298)
on left: 540 541, on right: 403 496 541
figure_list (279)
on left: 492 493, on right: 400 493
figured_bass_alteration (275)
on left: 478 479 480, on right: 484
figured_bass_modification (277)
on left: 486 487 488 489, on right: 485
fingering (264)
on left: 449, on right: 419 420 422
full_markup_list (300)
on left: 545, on right: 16 31 88 120 133
function_arglist (209)
on left: 282 283, on right: 46 321 410
function_arglist_skip_nonbackup (210)
on left: 284 285, on right: 283 285
gen_text_def (263)
on left: 445 446 447 448, on right: 428
grob_prop_path (233)
on left: 364 365, on right: 94 99 368
grob_prop_spec (232)
on left: 363, on right: 364 365
grouped_music_list (199)
on left: 224 225, on right: 223 325 327 328
header_block (145)
on left: 64, on right: 9 33 76
identifier_init (149)
on left: 71 72 73 74 75, on right: 67 68 69 70
lilypond (132)
on left: 4 5 6 7 8, on right: 1 5 6 7 8
lilypond_header (144)
on left: 62, on right: 64 124 137 148
lilypond_header_body (143)
on left: 58 59 60 61, on right: 59 60 61 62
lookup (134)
on left: 20 21, on right: 26 39 42
lyric_element (283)
on left: 500 501 502 503, on right: 504
lyric_element_music (284)
on left: 504, on right: 172 178 250 300
lyric_mode_music (219)
on left: 325 326, on right: 205 206 210 211
markup (328)
on left: 596 597, on right: 566 578
markup_braced_list (313)
on left: 564, on right: 558
markup_braced_list_body (314)
on left: 565 566 567, on right: 564 566 567
markup_command_embedded_lilypond (316)
on left: 570, on right: 573
markup_command_list (315)
on left: 568, on right: 559
markup_composed_list (312)
on left: 563, on right: 556
markup_head_1_item (322)
on left: 585, on right: 586 587
markup_head_1_list (323)
on left: 586 587, on right: 552 563 580 587 596
markup_list (309)
on left: 556 557, on right: 545 551 567 571
markup_mode (302)
on left: 546, on right: 547 548 550
markup_mode_word (303)
on left: 547, on right: 70 549
markup_partial_function (320)
on left: 579 580, on right: 550
markup_scm (307)
on left: 555, on right: 560 595
markup_top (306)
on left: 551 552 553, on right: 548
markup_uncomposed_list (310)
on left: 558 559 560 562, on right: 557 563
markup_word (324)
on left: 588 589, on right: 547 590
maybe_notemode_duration (267)
on left: 460 461, on right: 462 496 505
mode_changed_music (221)
on left: 327 328, on right: 221 574
mode_changing_head (222)
on left: 329 330 331 332 333, on right: 327
multiplied_duration (270)
on left: 465, on right: 54 179 246 279 303 461
multipliers (272)
on left: 468 469 470, on right: 252 465 469 470
music (177)
on left: 171 172 173, on right: 143 175 183 184
music_assign (181)
on left: 181 182, on right: 45 82 155 171
music_bare (198)
on left: 221 222 223, on right: 209
music_embedded (179)
on left: 175 176 177 178 179, on right: 55 168
music_embedded_backup (180)
on left: 180, on right: 177 178
music_function_call (217)
on left: 321, on right: 207 407 414
music_function_chord_body (247)
on left: 407 408 409, on right: 405
music_list (175)
on left: 167 168 169, on right: 55 168 169 170 188
music_or_context_def (171)
on left: 155 156, on right: 162
music_property_def (236)
on left: 368 369 370 371, on right: 190
new_chord (285)
on left: 505 506, on right: 497
new_lyrics (193)
on left: 205 206, on right: 206 215 220
note_chord_element (243)
on left: 398, on right: 397
number_expression (292)
on left: 523 524 525, on right: 72 523 524
number_factor (294)
on left: 529 530, on right: 526 527 528 529
number_term (293)
on left: 526 527 528, on right: 523 524 525
octave_check (255)
on left: 430 431, on right: 403 496
optional_context_mods (189)
on left: 197, on right: 203 204 205 206 328
optional_id (218)
on left: 322 323, on right: 203 204
optional_rest (280)
on left: 494 495, on right: 496
output_def (168)
on left: 150, on right: 19 38 80 144 149
output_def_head (169)
on left: 151 152 153, on right: 154
output_def_head_with_mode_switch (170)
on left: 154, on right: 157
paper_block (167)
on left: 149, on right: 115 129
partial_markup (305)
on left: 550, on right: 30 87
pitch (261)
on left: 441 442, on right: 254 264 307 443 496
pitch_as_music (178)
on left: 174, on right: 173 213
pitch_or_music (281)
on left: 496 497, on right: 83 174 245 277 301 386
pitch_or_tonic_pitch (262)
on left: 443 444, on right: 403
post_event (251)
on left: 421 422, on right: 53 176 406 412
property_operation (226)
on left: 340 341 342 343, on right: 359
property_path (225)
on left: 339, on right: 68 69 73 74 365 391 392
questions (299)
on left: 542 543, on right: 403 496 543
quotes (256)
on left: 432 433 434, on right: 431 439 440 442
reparsed_rhythm (206)
on left: 252, on right: 247 280 304
repeated_music (182)
on left: 183 184, on right: 208
revert_arg (227)
on left: 344, on right: 342 343 369
revert_arg_backup (228)
on left: 345, on right: 344 347 348 349
revert_arg_part (229)
on left: 346 347 348 349, on right: 345
scm_function_call (140)
on left: 46, on right: 25 41 44
score_block (162)
on left: 139, on right: 13 34 77 117 130
score_body (163)
on left: 140 141, on right: 139 141 562 593
score_item (164)
on left: 142 143 144, on right: 146
score_items (165)
on left: 145 146 148, on right: 140 146 148
script_dir (266)
on left: 457 458 459, on right: 414 417 418
sequential_music (183)
on left: 185 186, on right: 225
simple_element (282)
on left: 498 499, on right: 393
simple_markup (325)
on left: 590 591, on right: 552 596 597
simple_markup_noword (326)
on left: 593 594 595, on right: 553 591
simple_music (185)
on left: 189 190 191, on right: 181
simple_revert_context (235)
on left: 367, on right: 369
simultaneous_music (184)
on left: 187 188, on right: 224
start_symbol (130)
on left: 1 3, on right: 0
State 0
State 1
State 10
State 100
State 101
State 102
State 103
State 104
State 105
State 106
State 107
State 108
State 109
State 11
State 110
State 111
State 112
State 113
State 114
State 115
State 116
State 117
State 118
State 119
State 12
State 120
State 121
State 122
State 123
State 124
State 125
State 126
State 127
State 128
State 129
State 13
State 130
State 131
State 132
State 133
State 134
State 135
State 136
State 137
State 138
State 139
State 14
State 140
State 141
State 142
State 143
State 144
State 145
State 146
State 147
State 148
State 149
State 15
State 150
State 151
State 152
State 153
State 154
State 155
State 156
State 157
State 158
State 159
State 16
State 160
State 161
State 162
State 163
State 164
State 165
State 166
State 167
State 168
State 169
State 17
State 170
State 171
State 172
State 173
State 174
State 175
State 176
State 177
State 178
State 179
State 18
State 180
State 181
State 182
State 183
State 184
State 185
State 186
State 187
State 188
State 189
State 19
State 190
State 191
State 192
State 193
State 194
State 195
State 196
State 197
State 198
State 199
State 2
State 20
State 200
State 201
State 202
State 203
State 204
State 205
State 206
State 207
State 208
State 209
State 21
State 210
State 211
State 212
State 213
State 214
State 215
State 216
State 217
State 218
State 219
State 22
State 220
State 221
State 222
State 223
State 224
State 225
State 226
State 227
State 228
State 229
State 23
State 230
State 231
State 232
State 233
State 234
State 235
State 236
State 237
State 238
State 239
State 24
State 240
State 241
State 242
State 243
State 244
State 245
State 246
State 247
State 248
State 249
State 25
State 250
State 251
State 252
State 253
State 254
State 255
State 256
State 257
State 258
State 259
State 26
State 260
State 261
State 262
State 263
State 264
State 265
State 266
State 267
State 268
State 269
State 27
State 270
State 271
State 272
State 273
State 274
State 275
State 276
State 277
State 278
State 279
State 28
State 280
State 281
State 282
State 283
State 284
State 285
State 286
State 287
State 288
State 289
State 29
State 290
State 291
State 292
State 293
State 294
State 295
State 296
State 297
State 298
State 299
State 3
State 30
State 300
State 301
State 302
State 303
State 304
State 305
State 306
State 307
State 308
State 309
State 31
State 310
State 311
State 312
State 313
State 314
State 315
State 316
State 317
State 318
State 319
State 32
State 320
State 321
State 322
State 323
State 324
State 325
State 326
State 327
State 328
State 329
State 33
State 330
State 331
State 332
State 333
State 334
State 335
State 336
State 337
State 338
State 339
State 34
State 340
State 341
State 342
State 343
State 344
State 345
State 346
State 347
State 348
State 349
State 35
State 350
State 351
State 352
State 353
State 354
State 355
State 356
State 357
State 358
State 359
State 36
State 360
State 361
State 362
State 363
State 364
State 365
State 366
State 367
State 368
State 369
State 37
State 370
State 371
State 372
State 373
State 374
State 375
State 376
State 377
State 378
State 379
State 38
State 380
State 381
State 382
State 383
State 384
State 385
State 386
State 387
State 388
State 389
State 39
State 390
State 391
State 392
State 393
State 394
State 395
State 396
State 397
State 398
State 399
State 4
State 40
State 400
State 401
State 402
State 403
State 404
State 405
State 406
State 407
State 408
State 409
State 41
State 410
State 411
State 412
State 413
State 414
State 415
State 416
State 417
State 418
State 419
State 42
State 420
State 421
State 422
State 423
State 424
State 425
State 426
State 427
State 428
State 429
State 43
State 430
State 431
State 432
State 433
State 434
State 435
State 436
State 437
State 438
State 439
State 44
State 440
State 441
State 442
State 443
State 444
State 445
State 446
State 447
State 448
State 449
State 45
State 450
State 451
State 452
State 453
State 454
State 455
State 456
State 457
State 458
State 459
State 46
State 460
State 461
State 462
State 463
State 464
State 465
State 466
State 467
State 468
State 469
State 47
State 470
State 471
State 472
State 473
State 474
State 475
State 476
State 477
State 478
State 479
State 48
State 480
State 481
State 482
State 483
State 484
State 485
State 486
State 487
State 488
State 489
State 49
State 490
State 491
State 492
State 493
State 494
State 495
State 496
State 497
State 498
State 499
State 5
State 50
State 500
State 501
State 502
State 503
State 504
State 505
State 506
State 507
State 508
State 509
State 51
State 510
State 511
State 512
State 513
State 514
State 515
State 516
State 517
State 518
State 519
State 52
State 520
State 521
State 522
State 523
State 524
State 525
State 526
State 527
State 528
State 529
State 53
State 530
State 531
State 532
State 533
State 534
State 535
State 536
State 537
State 538
State 539
State 54
State 540
State 541
State 542
State 543
State 544
State 545
State 546
State 547
State 548
State 549
State 55
State 550
State 551
State 552
State 553
State 554
State 555
State 556
State 557
State 558
State 559
State 56
State 560
State 561
State 562
State 563
State 564
State 565
State 566
State 567
State 568
State 569
State 57
State 570
State 571
State 572
State 573
State 574
State 575
State 576
State 577
State 578
State 579
State 58
State 580
State 581
State 582
State 583
State 584
State 585
State 586
State 587
State 588
State 589
State 59
State 590
State 591
State 592
State 593
State 594
State 595
State 596
State 597
State 598
State 599
State 6
State 60
State 600
State 601
State 602
State 603
State 604
State 605
State 606
State 607
State 608
State 609
State 61
State 610
State 611
State 612
State 613
State 614
State 615
State 616
State 617
State 618
State 619
State 62
State 620
State 621
State 622
State 623
State 624
State 625
State 626
State 627
State 628
State 629
State 63
State 630
State 631
State 632
State 633
State 634
State 635
State 636
State 637
State 638
State 639
State 64
State 640
State 641
State 642
State 643
State 644
State 645
State 646
State 647
State 648
State 649
State 65
State 650
State 651
State 652
State 653
State 654
State 655
State 656
State 657
State 658
State 659
State 66
State 660
State 661
State 662
State 663
State 664
State 665
State 666
State 667
State 668
State 669
State 67
State 670
State 671
State 672
State 673
State 674
State 675
State 676
State 677
State 678
State 679
State 68
State 680
State 681
State 682
State 683
State 684
State 685
State 686
State 687
State 688
State 689
State 69
State 690
State 691
State 692
State 693
State 694
State 695
State 696
State 697
State 698
State 699
State 7
State 70
State 700
State 701
State 702
State 703
State 704
State 705
State 706
State 707
State 708
State 709
State 71
State 710
State 711
State 712
State 713
State 714
State 715
State 716
State 717
State 718
State 719
State 72
State 720
State 721
State 722
State 723
State 724
State 725
State 726
State 727
State 728
State 729
State 73
State 730
State 731
State 732
State 733
State 734
State 735
State 736
State 737
State 738
State 739
State 74
State 740
State 741
State 742
State 743
State 744
State 745
State 746
State 747
State 748
State 749
State 75
State 750
State 751
State 752
State 753
State 754
State 755
State 756
State 757
State 758
State 759
State 76
State 760
State 761
State 762
State 763
State 764
State 765
State 766
State 767
State 768
State 769
State 77
State 770
State 771
State 772
State 773
State 774
State 775
State 776
State 777
State 778
State 779
State 78
State 780
State 781
State 782
State 783
State 784
State 785
State 786
State 787
State 788
State 789
State 79
State 790
State 791
State 792
State 793
State 794
State 795
State 796
State 797
State 798
State 799
State 8
State 80
State 800
State 801
State 802
State 803
State 804
State 805
State 806
State 807
State 808
State 809
State 81
State 810
State 811
State 812
State 813
State 814
State 815
State 816
State 817
State 818
State 819
State 82
State 820
State 821
State 822
State 823
State 824
State 825
State 826
State 827
State 828
State 829
State 83
State 830
State 831
State 832
State 833
State 834
State 835
State 836
State 837
State 838
State 839
State 84
State 840
State 841
State 842
State 843
State 844
State 845
State 846
State 847
State 848
State 849
State 85
State 850
State 851
State 852
State 853
State 854
State 855
State 856
State 857
State 858
State 859
State 86
State 860
State 861
State 862
State 863
State 864
State 865
State 866
State 867
State 868
State 869
State 87
State 870
State 871
State 872
State 873
State 874
State 875
State 88
State 89
State 9
State 90
State 91
State 92
State 93
State 94
State 95
State 96
State 97
State 98
State 99
steno_duration (269)
on left: 463 464, on right: 164 165 465
steno_pitch (259)
on left: 439, on right: 441
step_number (290)
on left: 518 519 520, on right: 516 517
step_numbers (289)
on left: 516 517, on right: 514 517
string (237)
on left: 372 373 374, on right: 85 390
string_number_event (252)
on left: 423, on right: 424
sub_quotes (258)
on left: 437 438, on right: 433 438
sup_quotes (257)
on left: 435 436, on right: 434 436
symbol (240)
on left: 382 383 384, on right: 203 204 211 338 340 341
symbol_list_arg (200)
on left: 226 227 228, on right: 251 281 305 344
symbol_list_element (203)
on left: 234 235, on right: 237
symbol_list_part_bare (204)
on left: 236 237, on right: 73 74 232 391 392
tempo_event (174)
on left: 164 165 166, on right: 396
tempo_range (291)
on left: 521 522, on right: 164 165
text (238)
on left: 375 376 377 378, on right: 165 166
tremolo_type (273)
on left: 471 472, on right: 426
unsigned_number (297)
on left: 537 538 539, on right: 183 184 521 522