kernpy 0.0.2__py3-none-any.whl → 1.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- kernpy/__init__.py +30 -0
- kernpy/__main__.py +127 -0
- kernpy/core/__init__.py +119 -0
- kernpy/core/_io.py +48 -0
- kernpy/core/base_antlr_importer.py +61 -0
- kernpy/core/base_antlr_spine_parser_listener.py +196 -0
- kernpy/core/basic_spine_importer.py +43 -0
- kernpy/core/document.py +965 -0
- kernpy/core/dyn_importer.py +30 -0
- kernpy/core/dynam_spine_importer.py +42 -0
- kernpy/core/error_listener.py +51 -0
- kernpy/core/exporter.py +535 -0
- kernpy/core/fing_spine_importer.py +42 -0
- kernpy/core/generated/kernSpineLexer.interp +444 -0
- kernpy/core/generated/kernSpineLexer.py +535 -0
- kernpy/core/generated/kernSpineLexer.tokens +236 -0
- kernpy/core/generated/kernSpineParser.interp +425 -0
- kernpy/core/generated/kernSpineParser.py +9954 -0
- kernpy/core/generated/kernSpineParser.tokens +236 -0
- kernpy/core/generated/kernSpineParserListener.py +1200 -0
- kernpy/core/generated/kernSpineParserVisitor.py +673 -0
- kernpy/core/generic.py +426 -0
- kernpy/core/gkern.py +526 -0
- kernpy/core/graphviz_exporter.py +89 -0
- kernpy/core/harm_spine_importer.py +41 -0
- kernpy/core/import_humdrum_old.py +853 -0
- kernpy/core/importer.py +285 -0
- kernpy/core/importer_factory.py +43 -0
- kernpy/core/kern_spine_importer.py +73 -0
- kernpy/core/mens_spine_importer.py +23 -0
- kernpy/core/mhxm_spine_importer.py +44 -0
- kernpy/core/pitch_models.py +338 -0
- kernpy/core/root_spine_importer.py +58 -0
- kernpy/core/spine_importer.py +45 -0
- kernpy/core/text_spine_importer.py +43 -0
- kernpy/core/tokenizers.py +239 -0
- kernpy/core/tokens.py +2011 -0
- kernpy/core/transposer.py +300 -0
- kernpy/io/__init__.py +14 -0
- kernpy/io/public.py +355 -0
- kernpy/polish_scores/__init__.py +13 -0
- kernpy/polish_scores/download_polish_dataset.py +357 -0
- kernpy/polish_scores/iiif.py +47 -0
- kernpy/test_grammar.sh +22 -0
- kernpy/util/__init__.py +14 -0
- kernpy/util/helpers.py +55 -0
- kernpy/util/store_cache.py +35 -0
- kernpy/visualize_analysis.sh +23 -0
- kernpy-1.0.1.dist-info/METADATA +497 -0
- kernpy-1.0.1.dist-info/RECORD +51 -0
- {kernpy-0.0.2.dist-info → kernpy-1.0.1.dist-info}/WHEEL +1 -2
- kernpy/example.py +0 -1
- kernpy-0.0.2.dist-info/LICENSE +0 -19
- kernpy-0.0.2.dist-info/METADATA +0 -19
- kernpy-0.0.2.dist-info/RECORD +0 -7
- kernpy-0.0.2.dist-info/top_level.txt +0 -1
@@ -0,0 +1,1200 @@
|
|
1
|
+
# Generated from kernSpineParser.g4 by ANTLR 4.13.1
|
2
|
+
from antlr4 import *
|
3
|
+
if "." in __name__:
|
4
|
+
from .kernSpineParser import kernSpineParser
|
5
|
+
else:
|
6
|
+
from kernSpineParser import kernSpineParser
|
7
|
+
|
8
|
+
# This class defines a complete listener for a parse tree produced by kernSpineParser.
|
9
|
+
class kernSpineParserListener(ParseTreeListener):
|
10
|
+
|
11
|
+
# Enter a parse tree produced by kernSpineParser#start.
|
12
|
+
def enterStart(self, ctx:kernSpineParser.StartContext):
|
13
|
+
pass
|
14
|
+
|
15
|
+
# Exit a parse tree produced by kernSpineParser#start.
|
16
|
+
def exitStart(self, ctx:kernSpineParser.StartContext):
|
17
|
+
pass
|
18
|
+
|
19
|
+
|
20
|
+
# Enter a parse tree produced by kernSpineParser#field.
|
21
|
+
def enterField(self, ctx:kernSpineParser.FieldContext):
|
22
|
+
pass
|
23
|
+
|
24
|
+
# Exit a parse tree produced by kernSpineParser#field.
|
25
|
+
def exitField(self, ctx:kernSpineParser.FieldContext):
|
26
|
+
pass
|
27
|
+
|
28
|
+
|
29
|
+
# Enter a parse tree produced by kernSpineParser#notes_rests_chords.
|
30
|
+
def enterNotes_rests_chords(self, ctx:kernSpineParser.Notes_rests_chordsContext):
|
31
|
+
pass
|
32
|
+
|
33
|
+
# Exit a parse tree produced by kernSpineParser#notes_rests_chords.
|
34
|
+
def exitNotes_rests_chords(self, ctx:kernSpineParser.Notes_rests_chordsContext):
|
35
|
+
pass
|
36
|
+
|
37
|
+
|
38
|
+
# Enter a parse tree produced by kernSpineParser#structural.
|
39
|
+
def enterStructural(self, ctx:kernSpineParser.StructuralContext):
|
40
|
+
pass
|
41
|
+
|
42
|
+
# Exit a parse tree produced by kernSpineParser#structural.
|
43
|
+
def exitStructural(self, ctx:kernSpineParser.StructuralContext):
|
44
|
+
pass
|
45
|
+
|
46
|
+
|
47
|
+
# Enter a parse tree produced by kernSpineParser#contextual.
|
48
|
+
def enterContextual(self, ctx:kernSpineParser.ContextualContext):
|
49
|
+
pass
|
50
|
+
|
51
|
+
# Exit a parse tree produced by kernSpineParser#contextual.
|
52
|
+
def exitContextual(self, ctx:kernSpineParser.ContextualContext):
|
53
|
+
pass
|
54
|
+
|
55
|
+
|
56
|
+
# Enter a parse tree produced by kernSpineParser#signatures.
|
57
|
+
def enterSignatures(self, ctx:kernSpineParser.SignaturesContext):
|
58
|
+
pass
|
59
|
+
|
60
|
+
# Exit a parse tree produced by kernSpineParser#signatures.
|
61
|
+
def exitSignatures(self, ctx:kernSpineParser.SignaturesContext):
|
62
|
+
pass
|
63
|
+
|
64
|
+
|
65
|
+
# Enter a parse tree produced by kernSpineParser#otherContextual.
|
66
|
+
def enterOtherContextual(self, ctx:kernSpineParser.OtherContextualContext):
|
67
|
+
pass
|
68
|
+
|
69
|
+
# Exit a parse tree produced by kernSpineParser#otherContextual.
|
70
|
+
def exitOtherContextual(self, ctx:kernSpineParser.OtherContextualContext):
|
71
|
+
pass
|
72
|
+
|
73
|
+
|
74
|
+
# Enter a parse tree produced by kernSpineParser#empty.
|
75
|
+
def enterEmpty(self, ctx:kernSpineParser.EmptyContext):
|
76
|
+
pass
|
77
|
+
|
78
|
+
# Exit a parse tree produced by kernSpineParser#empty.
|
79
|
+
def exitEmpty(self, ctx:kernSpineParser.EmptyContext):
|
80
|
+
pass
|
81
|
+
|
82
|
+
|
83
|
+
# Enter a parse tree produced by kernSpineParser#rest.
|
84
|
+
def enterRest(self, ctx:kernSpineParser.RestContext):
|
85
|
+
pass
|
86
|
+
|
87
|
+
# Exit a parse tree produced by kernSpineParser#rest.
|
88
|
+
def exitRest(self, ctx:kernSpineParser.RestContext):
|
89
|
+
pass
|
90
|
+
|
91
|
+
|
92
|
+
# Enter a parse tree produced by kernSpineParser#restChar_r.
|
93
|
+
def enterRestChar_r(self, ctx:kernSpineParser.RestChar_rContext):
|
94
|
+
pass
|
95
|
+
|
96
|
+
# Exit a parse tree produced by kernSpineParser#restChar_r.
|
97
|
+
def exitRestChar_r(self, ctx:kernSpineParser.RestChar_rContext):
|
98
|
+
pass
|
99
|
+
|
100
|
+
|
101
|
+
# Enter a parse tree produced by kernSpineParser#restDecoration.
|
102
|
+
def enterRestDecoration(self, ctx:kernSpineParser.RestDecorationContext):
|
103
|
+
pass
|
104
|
+
|
105
|
+
# Exit a parse tree produced by kernSpineParser#restDecoration.
|
106
|
+
def exitRestDecoration(self, ctx:kernSpineParser.RestDecorationContext):
|
107
|
+
pass
|
108
|
+
|
109
|
+
|
110
|
+
# Enter a parse tree produced by kernSpineParser#chord.
|
111
|
+
def enterChord(self, ctx:kernSpineParser.ChordContext):
|
112
|
+
pass
|
113
|
+
|
114
|
+
# Exit a parse tree produced by kernSpineParser#chord.
|
115
|
+
def exitChord(self, ctx:kernSpineParser.ChordContext):
|
116
|
+
pass
|
117
|
+
|
118
|
+
|
119
|
+
# Enter a parse tree produced by kernSpineParser#note.
|
120
|
+
def enterNote(self, ctx:kernSpineParser.NoteContext):
|
121
|
+
pass
|
122
|
+
|
123
|
+
# Exit a parse tree produced by kernSpineParser#note.
|
124
|
+
def exitNote(self, ctx:kernSpineParser.NoteContext):
|
125
|
+
pass
|
126
|
+
|
127
|
+
|
128
|
+
# Enter a parse tree produced by kernSpineParser#nonVisualTandemInterpretation.
|
129
|
+
def enterNonVisualTandemInterpretation(self, ctx:kernSpineParser.NonVisualTandemInterpretationContext):
|
130
|
+
pass
|
131
|
+
|
132
|
+
# Exit a parse tree produced by kernSpineParser#nonVisualTandemInterpretation.
|
133
|
+
def exitNonVisualTandemInterpretation(self, ctx:kernSpineParser.NonVisualTandemInterpretationContext):
|
134
|
+
pass
|
135
|
+
|
136
|
+
|
137
|
+
# Enter a parse tree produced by kernSpineParser#boundingBox.
|
138
|
+
def enterBoundingBox(self, ctx:kernSpineParser.BoundingBoxContext):
|
139
|
+
pass
|
140
|
+
|
141
|
+
# Exit a parse tree produced by kernSpineParser#boundingBox.
|
142
|
+
def exitBoundingBox(self, ctx:kernSpineParser.BoundingBoxContext):
|
143
|
+
pass
|
144
|
+
|
145
|
+
|
146
|
+
# Enter a parse tree produced by kernSpineParser#xywh.
|
147
|
+
def enterXywh(self, ctx:kernSpineParser.XywhContext):
|
148
|
+
pass
|
149
|
+
|
150
|
+
# Exit a parse tree produced by kernSpineParser#xywh.
|
151
|
+
def exitXywh(self, ctx:kernSpineParser.XywhContext):
|
152
|
+
pass
|
153
|
+
|
154
|
+
|
155
|
+
# Enter a parse tree produced by kernSpineParser#x.
|
156
|
+
def enterX(self, ctx:kernSpineParser.XContext):
|
157
|
+
pass
|
158
|
+
|
159
|
+
# Exit a parse tree produced by kernSpineParser#x.
|
160
|
+
def exitX(self, ctx:kernSpineParser.XContext):
|
161
|
+
pass
|
162
|
+
|
163
|
+
|
164
|
+
# Enter a parse tree produced by kernSpineParser#y.
|
165
|
+
def enterY(self, ctx:kernSpineParser.YContext):
|
166
|
+
pass
|
167
|
+
|
168
|
+
# Exit a parse tree produced by kernSpineParser#y.
|
169
|
+
def exitY(self, ctx:kernSpineParser.YContext):
|
170
|
+
pass
|
171
|
+
|
172
|
+
|
173
|
+
# Enter a parse tree produced by kernSpineParser#w.
|
174
|
+
def enterW(self, ctx:kernSpineParser.WContext):
|
175
|
+
pass
|
176
|
+
|
177
|
+
# Exit a parse tree produced by kernSpineParser#w.
|
178
|
+
def exitW(self, ctx:kernSpineParser.WContext):
|
179
|
+
pass
|
180
|
+
|
181
|
+
|
182
|
+
# Enter a parse tree produced by kernSpineParser#h.
|
183
|
+
def enterH(self, ctx:kernSpineParser.HContext):
|
184
|
+
pass
|
185
|
+
|
186
|
+
# Exit a parse tree produced by kernSpineParser#h.
|
187
|
+
def exitH(self, ctx:kernSpineParser.HContext):
|
188
|
+
pass
|
189
|
+
|
190
|
+
|
191
|
+
# Enter a parse tree produced by kernSpineParser#pageNumber.
|
192
|
+
def enterPageNumber(self, ctx:kernSpineParser.PageNumberContext):
|
193
|
+
pass
|
194
|
+
|
195
|
+
# Exit a parse tree produced by kernSpineParser#pageNumber.
|
196
|
+
def exitPageNumber(self, ctx:kernSpineParser.PageNumberContext):
|
197
|
+
pass
|
198
|
+
|
199
|
+
|
200
|
+
# Enter a parse tree produced by kernSpineParser#visualTandemInterpretation.
|
201
|
+
def enterVisualTandemInterpretation(self, ctx:kernSpineParser.VisualTandemInterpretationContext):
|
202
|
+
pass
|
203
|
+
|
204
|
+
# Exit a parse tree produced by kernSpineParser#visualTandemInterpretation.
|
205
|
+
def exitVisualTandemInterpretation(self, ctx:kernSpineParser.VisualTandemInterpretationContext):
|
206
|
+
pass
|
207
|
+
|
208
|
+
|
209
|
+
# Enter a parse tree produced by kernSpineParser#associatedIDS.
|
210
|
+
def enterAssociatedIDS(self, ctx:kernSpineParser.AssociatedIDSContext):
|
211
|
+
pass
|
212
|
+
|
213
|
+
# Exit a parse tree produced by kernSpineParser#associatedIDS.
|
214
|
+
def exitAssociatedIDS(self, ctx:kernSpineParser.AssociatedIDSContext):
|
215
|
+
pass
|
216
|
+
|
217
|
+
|
218
|
+
# Enter a parse tree produced by kernSpineParser#placeHolder.
|
219
|
+
def enterPlaceHolder(self, ctx:kernSpineParser.PlaceHolderContext):
|
220
|
+
pass
|
221
|
+
|
222
|
+
# Exit a parse tree produced by kernSpineParser#placeHolder.
|
223
|
+
def exitPlaceHolder(self, ctx:kernSpineParser.PlaceHolderContext):
|
224
|
+
pass
|
225
|
+
|
226
|
+
|
227
|
+
# Enter a parse tree produced by kernSpineParser#octaveShift.
|
228
|
+
def enterOctaveShift(self, ctx:kernSpineParser.OctaveShiftContext):
|
229
|
+
pass
|
230
|
+
|
231
|
+
# Exit a parse tree produced by kernSpineParser#octaveShift.
|
232
|
+
def exitOctaveShift(self, ctx:kernSpineParser.OctaveShiftContext):
|
233
|
+
pass
|
234
|
+
|
235
|
+
|
236
|
+
# Enter a parse tree produced by kernSpineParser#pianoHand.
|
237
|
+
def enterPianoHand(self, ctx:kernSpineParser.PianoHandContext):
|
238
|
+
pass
|
239
|
+
|
240
|
+
# Exit a parse tree produced by kernSpineParser#pianoHand.
|
241
|
+
def exitPianoHand(self, ctx:kernSpineParser.PianoHandContext):
|
242
|
+
pass
|
243
|
+
|
244
|
+
|
245
|
+
# Enter a parse tree produced by kernSpineParser#tandemTuplet.
|
246
|
+
def enterTandemTuplet(self, ctx:kernSpineParser.TandemTupletContext):
|
247
|
+
pass
|
248
|
+
|
249
|
+
# Exit a parse tree produced by kernSpineParser#tandemTuplet.
|
250
|
+
def exitTandemTuplet(self, ctx:kernSpineParser.TandemTupletContext):
|
251
|
+
pass
|
252
|
+
|
253
|
+
|
254
|
+
# Enter a parse tree produced by kernSpineParser#tandemCue.
|
255
|
+
def enterTandemCue(self, ctx:kernSpineParser.TandemCueContext):
|
256
|
+
pass
|
257
|
+
|
258
|
+
# Exit a parse tree produced by kernSpineParser#tandemCue.
|
259
|
+
def exitTandemCue(self, ctx:kernSpineParser.TandemCueContext):
|
260
|
+
pass
|
261
|
+
|
262
|
+
|
263
|
+
# Enter a parse tree produced by kernSpineParser#tandemTremolo.
|
264
|
+
def enterTandemTremolo(self, ctx:kernSpineParser.TandemTremoloContext):
|
265
|
+
pass
|
266
|
+
|
267
|
+
# Exit a parse tree produced by kernSpineParser#tandemTremolo.
|
268
|
+
def exitTandemTremolo(self, ctx:kernSpineParser.TandemTremoloContext):
|
269
|
+
pass
|
270
|
+
|
271
|
+
|
272
|
+
# Enter a parse tree produced by kernSpineParser#ossia.
|
273
|
+
def enterOssia(self, ctx:kernSpineParser.OssiaContext):
|
274
|
+
pass
|
275
|
+
|
276
|
+
# Exit a parse tree produced by kernSpineParser#ossia.
|
277
|
+
def exitOssia(self, ctx:kernSpineParser.OssiaContext):
|
278
|
+
pass
|
279
|
+
|
280
|
+
|
281
|
+
# Enter a parse tree produced by kernSpineParser#rscale.
|
282
|
+
def enterRscale(self, ctx:kernSpineParser.RscaleContext):
|
283
|
+
pass
|
284
|
+
|
285
|
+
# Exit a parse tree produced by kernSpineParser#rscale.
|
286
|
+
def exitRscale(self, ctx:kernSpineParser.RscaleContext):
|
287
|
+
pass
|
288
|
+
|
289
|
+
|
290
|
+
# Enter a parse tree produced by kernSpineParser#pedal.
|
291
|
+
def enterPedal(self, ctx:kernSpineParser.PedalContext):
|
292
|
+
pass
|
293
|
+
|
294
|
+
# Exit a parse tree produced by kernSpineParser#pedal.
|
295
|
+
def exitPedal(self, ctx:kernSpineParser.PedalContext):
|
296
|
+
pass
|
297
|
+
|
298
|
+
|
299
|
+
# Enter a parse tree produced by kernSpineParser#ela.
|
300
|
+
def enterEla(self, ctx:kernSpineParser.ElaContext):
|
301
|
+
pass
|
302
|
+
|
303
|
+
# Exit a parse tree produced by kernSpineParser#ela.
|
304
|
+
def exitEla(self, ctx:kernSpineParser.ElaContext):
|
305
|
+
pass
|
306
|
+
|
307
|
+
|
308
|
+
# Enter a parse tree produced by kernSpineParser#dynamics_position.
|
309
|
+
def enterDynamics_position(self, ctx:kernSpineParser.Dynamics_positionContext):
|
310
|
+
pass
|
311
|
+
|
312
|
+
# Exit a parse tree produced by kernSpineParser#dynamics_position.
|
313
|
+
def exitDynamics_position(self, ctx:kernSpineParser.Dynamics_positionContext):
|
314
|
+
pass
|
315
|
+
|
316
|
+
|
317
|
+
# Enter a parse tree produced by kernSpineParser#sections.
|
318
|
+
def enterSections(self, ctx:kernSpineParser.SectionsContext):
|
319
|
+
pass
|
320
|
+
|
321
|
+
# Exit a parse tree produced by kernSpineParser#sections.
|
322
|
+
def exitSections(self, ctx:kernSpineParser.SectionsContext):
|
323
|
+
pass
|
324
|
+
|
325
|
+
|
326
|
+
# Enter a parse tree produced by kernSpineParser#sectionNames.
|
327
|
+
def enterSectionNames(self, ctx:kernSpineParser.SectionNamesContext):
|
328
|
+
pass
|
329
|
+
|
330
|
+
# Exit a parse tree produced by kernSpineParser#sectionNames.
|
331
|
+
def exitSectionNames(self, ctx:kernSpineParser.SectionNamesContext):
|
332
|
+
pass
|
333
|
+
|
334
|
+
|
335
|
+
# Enter a parse tree produced by kernSpineParser#sectionName.
|
336
|
+
def enterSectionName(self, ctx:kernSpineParser.SectionNameContext):
|
337
|
+
pass
|
338
|
+
|
339
|
+
# Exit a parse tree produced by kernSpineParser#sectionName.
|
340
|
+
def exitSectionName(self, ctx:kernSpineParser.SectionNameContext):
|
341
|
+
pass
|
342
|
+
|
343
|
+
|
344
|
+
# Enter a parse tree produced by kernSpineParser#transposition.
|
345
|
+
def enterTransposition(self, ctx:kernSpineParser.TranspositionContext):
|
346
|
+
pass
|
347
|
+
|
348
|
+
# Exit a parse tree produced by kernSpineParser#transposition.
|
349
|
+
def exitTransposition(self, ctx:kernSpineParser.TranspositionContext):
|
350
|
+
pass
|
351
|
+
|
352
|
+
|
353
|
+
# Enter a parse tree produced by kernSpineParser#instrument.
|
354
|
+
def enterInstrument(self, ctx:kernSpineParser.InstrumentContext):
|
355
|
+
pass
|
356
|
+
|
357
|
+
# Exit a parse tree produced by kernSpineParser#instrument.
|
358
|
+
def exitInstrument(self, ctx:kernSpineParser.InstrumentContext):
|
359
|
+
pass
|
360
|
+
|
361
|
+
|
362
|
+
# Enter a parse tree produced by kernSpineParser#instrumentTitle.
|
363
|
+
def enterInstrumentTitle(self, ctx:kernSpineParser.InstrumentTitleContext):
|
364
|
+
pass
|
365
|
+
|
366
|
+
# Exit a parse tree produced by kernSpineParser#instrumentTitle.
|
367
|
+
def exitInstrumentTitle(self, ctx:kernSpineParser.InstrumentTitleContext):
|
368
|
+
pass
|
369
|
+
|
370
|
+
|
371
|
+
# Enter a parse tree produced by kernSpineParser#number.
|
372
|
+
def enterNumber(self, ctx:kernSpineParser.NumberContext):
|
373
|
+
pass
|
374
|
+
|
375
|
+
# Exit a parse tree produced by kernSpineParser#number.
|
376
|
+
def exitNumber(self, ctx:kernSpineParser.NumberContext):
|
377
|
+
pass
|
378
|
+
|
379
|
+
|
380
|
+
# Enter a parse tree produced by kernSpineParser#lowerCasePitch.
|
381
|
+
def enterLowerCasePitch(self, ctx:kernSpineParser.LowerCasePitchContext):
|
382
|
+
pass
|
383
|
+
|
384
|
+
# Exit a parse tree produced by kernSpineParser#lowerCasePitch.
|
385
|
+
def exitLowerCasePitch(self, ctx:kernSpineParser.LowerCasePitchContext):
|
386
|
+
pass
|
387
|
+
|
388
|
+
|
389
|
+
# Enter a parse tree produced by kernSpineParser#upperCasePitch.
|
390
|
+
def enterUpperCasePitch(self, ctx:kernSpineParser.UpperCasePitchContext):
|
391
|
+
pass
|
392
|
+
|
393
|
+
# Exit a parse tree produced by kernSpineParser#upperCasePitch.
|
394
|
+
def exitUpperCasePitch(self, ctx:kernSpineParser.UpperCasePitchContext):
|
395
|
+
pass
|
396
|
+
|
397
|
+
|
398
|
+
# Enter a parse tree produced by kernSpineParser#pitchClass.
|
399
|
+
def enterPitchClass(self, ctx:kernSpineParser.PitchClassContext):
|
400
|
+
pass
|
401
|
+
|
402
|
+
# Exit a parse tree produced by kernSpineParser#pitchClass.
|
403
|
+
def exitPitchClass(self, ctx:kernSpineParser.PitchClassContext):
|
404
|
+
pass
|
405
|
+
|
406
|
+
|
407
|
+
# Enter a parse tree produced by kernSpineParser#accomp.
|
408
|
+
def enterAccomp(self, ctx:kernSpineParser.AccompContext):
|
409
|
+
pass
|
410
|
+
|
411
|
+
# Exit a parse tree produced by kernSpineParser#accomp.
|
412
|
+
def exitAccomp(self, ctx:kernSpineParser.AccompContext):
|
413
|
+
pass
|
414
|
+
|
415
|
+
|
416
|
+
# Enter a parse tree produced by kernSpineParser#solo.
|
417
|
+
def enterSolo(self, ctx:kernSpineParser.SoloContext):
|
418
|
+
pass
|
419
|
+
|
420
|
+
# Exit a parse tree produced by kernSpineParser#solo.
|
421
|
+
def exitSolo(self, ctx:kernSpineParser.SoloContext):
|
422
|
+
pass
|
423
|
+
|
424
|
+
|
425
|
+
# Enter a parse tree produced by kernSpineParser#strophe.
|
426
|
+
def enterStrophe(self, ctx:kernSpineParser.StropheContext):
|
427
|
+
pass
|
428
|
+
|
429
|
+
# Exit a parse tree produced by kernSpineParser#strophe.
|
430
|
+
def exitStrophe(self, ctx:kernSpineParser.StropheContext):
|
431
|
+
pass
|
432
|
+
|
433
|
+
|
434
|
+
# Enter a parse tree produced by kernSpineParser#timebase.
|
435
|
+
def enterTimebase(self, ctx:kernSpineParser.TimebaseContext):
|
436
|
+
pass
|
437
|
+
|
438
|
+
# Exit a parse tree produced by kernSpineParser#timebase.
|
439
|
+
def exitTimebase(self, ctx:kernSpineParser.TimebaseContext):
|
440
|
+
pass
|
441
|
+
|
442
|
+
|
443
|
+
# Enter a parse tree produced by kernSpineParser#part.
|
444
|
+
def enterPart(self, ctx:kernSpineParser.PartContext):
|
445
|
+
pass
|
446
|
+
|
447
|
+
# Exit a parse tree produced by kernSpineParser#part.
|
448
|
+
def exitPart(self, ctx:kernSpineParser.PartContext):
|
449
|
+
pass
|
450
|
+
|
451
|
+
|
452
|
+
# Enter a parse tree produced by kernSpineParser#group.
|
453
|
+
def enterGroup(self, ctx:kernSpineParser.GroupContext):
|
454
|
+
pass
|
455
|
+
|
456
|
+
# Exit a parse tree produced by kernSpineParser#group.
|
457
|
+
def exitGroup(self, ctx:kernSpineParser.GroupContext):
|
458
|
+
pass
|
459
|
+
|
460
|
+
|
461
|
+
# Enter a parse tree produced by kernSpineParser#staff.
|
462
|
+
def enterStaff(self, ctx:kernSpineParser.StaffContext):
|
463
|
+
pass
|
464
|
+
|
465
|
+
# Exit a parse tree produced by kernSpineParser#staff.
|
466
|
+
def exitStaff(self, ctx:kernSpineParser.StaffContext):
|
467
|
+
pass
|
468
|
+
|
469
|
+
|
470
|
+
# Enter a parse tree produced by kernSpineParser#clef.
|
471
|
+
def enterClef(self, ctx:kernSpineParser.ClefContext):
|
472
|
+
pass
|
473
|
+
|
474
|
+
# Exit a parse tree produced by kernSpineParser#clef.
|
475
|
+
def exitClef(self, ctx:kernSpineParser.ClefContext):
|
476
|
+
pass
|
477
|
+
|
478
|
+
|
479
|
+
# Enter a parse tree produced by kernSpineParser#clefValue.
|
480
|
+
def enterClefValue(self, ctx:kernSpineParser.ClefValueContext):
|
481
|
+
pass
|
482
|
+
|
483
|
+
# Exit a parse tree produced by kernSpineParser#clefValue.
|
484
|
+
def exitClefValue(self, ctx:kernSpineParser.ClefValueContext):
|
485
|
+
pass
|
486
|
+
|
487
|
+
|
488
|
+
# Enter a parse tree produced by kernSpineParser#clefSign.
|
489
|
+
def enterClefSign(self, ctx:kernSpineParser.ClefSignContext):
|
490
|
+
pass
|
491
|
+
|
492
|
+
# Exit a parse tree produced by kernSpineParser#clefSign.
|
493
|
+
def exitClefSign(self, ctx:kernSpineParser.ClefSignContext):
|
494
|
+
pass
|
495
|
+
|
496
|
+
|
497
|
+
# Enter a parse tree produced by kernSpineParser#clefLine.
|
498
|
+
def enterClefLine(self, ctx:kernSpineParser.ClefLineContext):
|
499
|
+
pass
|
500
|
+
|
501
|
+
# Exit a parse tree produced by kernSpineParser#clefLine.
|
502
|
+
def exitClefLine(self, ctx:kernSpineParser.ClefLineContext):
|
503
|
+
pass
|
504
|
+
|
505
|
+
|
506
|
+
# Enter a parse tree produced by kernSpineParser#clefOctave.
|
507
|
+
def enterClefOctave(self, ctx:kernSpineParser.ClefOctaveContext):
|
508
|
+
pass
|
509
|
+
|
510
|
+
# Exit a parse tree produced by kernSpineParser#clefOctave.
|
511
|
+
def exitClefOctave(self, ctx:kernSpineParser.ClefOctaveContext):
|
512
|
+
pass
|
513
|
+
|
514
|
+
|
515
|
+
# Enter a parse tree produced by kernSpineParser#keySignature.
|
516
|
+
def enterKeySignature(self, ctx:kernSpineParser.KeySignatureContext):
|
517
|
+
pass
|
518
|
+
|
519
|
+
# Exit a parse tree produced by kernSpineParser#keySignature.
|
520
|
+
def exitKeySignature(self, ctx:kernSpineParser.KeySignatureContext):
|
521
|
+
pass
|
522
|
+
|
523
|
+
|
524
|
+
# Enter a parse tree produced by kernSpineParser#keySignaturePitchClass.
|
525
|
+
def enterKeySignaturePitchClass(self, ctx:kernSpineParser.KeySignaturePitchClassContext):
|
526
|
+
pass
|
527
|
+
|
528
|
+
# Exit a parse tree produced by kernSpineParser#keySignaturePitchClass.
|
529
|
+
def exitKeySignaturePitchClass(self, ctx:kernSpineParser.KeySignaturePitchClassContext):
|
530
|
+
pass
|
531
|
+
|
532
|
+
|
533
|
+
# Enter a parse tree produced by kernSpineParser#keySignatureCancel.
|
534
|
+
def enterKeySignatureCancel(self, ctx:kernSpineParser.KeySignatureCancelContext):
|
535
|
+
pass
|
536
|
+
|
537
|
+
# Exit a parse tree produced by kernSpineParser#keySignatureCancel.
|
538
|
+
def exitKeySignatureCancel(self, ctx:kernSpineParser.KeySignatureCancelContext):
|
539
|
+
pass
|
540
|
+
|
541
|
+
|
542
|
+
# Enter a parse tree produced by kernSpineParser#keyCancel.
|
543
|
+
def enterKeyCancel(self, ctx:kernSpineParser.KeyCancelContext):
|
544
|
+
pass
|
545
|
+
|
546
|
+
# Exit a parse tree produced by kernSpineParser#keyCancel.
|
547
|
+
def exitKeyCancel(self, ctx:kernSpineParser.KeyCancelContext):
|
548
|
+
pass
|
549
|
+
|
550
|
+
|
551
|
+
# Enter a parse tree produced by kernSpineParser#keyMode.
|
552
|
+
def enterKeyMode(self, ctx:kernSpineParser.KeyModeContext):
|
553
|
+
pass
|
554
|
+
|
555
|
+
# Exit a parse tree produced by kernSpineParser#keyMode.
|
556
|
+
def exitKeyMode(self, ctx:kernSpineParser.KeyModeContext):
|
557
|
+
pass
|
558
|
+
|
559
|
+
|
560
|
+
# Enter a parse tree produced by kernSpineParser#key.
|
561
|
+
def enterKey(self, ctx:kernSpineParser.KeyContext):
|
562
|
+
pass
|
563
|
+
|
564
|
+
# Exit a parse tree produced by kernSpineParser#key.
|
565
|
+
def exitKey(self, ctx:kernSpineParser.KeyContext):
|
566
|
+
pass
|
567
|
+
|
568
|
+
|
569
|
+
# Enter a parse tree produced by kernSpineParser#singleKey.
|
570
|
+
def enterSingleKey(self, ctx:kernSpineParser.SingleKeyContext):
|
571
|
+
pass
|
572
|
+
|
573
|
+
# Exit a parse tree produced by kernSpineParser#singleKey.
|
574
|
+
def exitSingleKey(self, ctx:kernSpineParser.SingleKeyContext):
|
575
|
+
pass
|
576
|
+
|
577
|
+
|
578
|
+
# Enter a parse tree produced by kernSpineParser#minorKey.
|
579
|
+
def enterMinorKey(self, ctx:kernSpineParser.MinorKeyContext):
|
580
|
+
pass
|
581
|
+
|
582
|
+
# Exit a parse tree produced by kernSpineParser#minorKey.
|
583
|
+
def exitMinorKey(self, ctx:kernSpineParser.MinorKeyContext):
|
584
|
+
pass
|
585
|
+
|
586
|
+
|
587
|
+
# Enter a parse tree produced by kernSpineParser#majorKey.
|
588
|
+
def enterMajorKey(self, ctx:kernSpineParser.MajorKeyContext):
|
589
|
+
pass
|
590
|
+
|
591
|
+
# Exit a parse tree produced by kernSpineParser#majorKey.
|
592
|
+
def exitMajorKey(self, ctx:kernSpineParser.MajorKeyContext):
|
593
|
+
pass
|
594
|
+
|
595
|
+
|
596
|
+
# Enter a parse tree produced by kernSpineParser#modal.
|
597
|
+
def enterModal(self, ctx:kernSpineParser.ModalContext):
|
598
|
+
pass
|
599
|
+
|
600
|
+
# Exit a parse tree produced by kernSpineParser#modal.
|
601
|
+
def exitModal(self, ctx:kernSpineParser.ModalContext):
|
602
|
+
pass
|
603
|
+
|
604
|
+
|
605
|
+
# Enter a parse tree produced by kernSpineParser#locrian.
|
606
|
+
def enterLocrian(self, ctx:kernSpineParser.LocrianContext):
|
607
|
+
pass
|
608
|
+
|
609
|
+
# Exit a parse tree produced by kernSpineParser#locrian.
|
610
|
+
def exitLocrian(self, ctx:kernSpineParser.LocrianContext):
|
611
|
+
pass
|
612
|
+
|
613
|
+
|
614
|
+
# Enter a parse tree produced by kernSpineParser#ionian.
|
615
|
+
def enterIonian(self, ctx:kernSpineParser.IonianContext):
|
616
|
+
pass
|
617
|
+
|
618
|
+
# Exit a parse tree produced by kernSpineParser#ionian.
|
619
|
+
def exitIonian(self, ctx:kernSpineParser.IonianContext):
|
620
|
+
pass
|
621
|
+
|
622
|
+
|
623
|
+
# Enter a parse tree produced by kernSpineParser#aeolian.
|
624
|
+
def enterAeolian(self, ctx:kernSpineParser.AeolianContext):
|
625
|
+
pass
|
626
|
+
|
627
|
+
# Exit a parse tree produced by kernSpineParser#aeolian.
|
628
|
+
def exitAeolian(self, ctx:kernSpineParser.AeolianContext):
|
629
|
+
pass
|
630
|
+
|
631
|
+
|
632
|
+
# Enter a parse tree produced by kernSpineParser#mixolydian.
|
633
|
+
def enterMixolydian(self, ctx:kernSpineParser.MixolydianContext):
|
634
|
+
pass
|
635
|
+
|
636
|
+
# Exit a parse tree produced by kernSpineParser#mixolydian.
|
637
|
+
def exitMixolydian(self, ctx:kernSpineParser.MixolydianContext):
|
638
|
+
pass
|
639
|
+
|
640
|
+
|
641
|
+
# Enter a parse tree produced by kernSpineParser#lydian.
|
642
|
+
def enterLydian(self, ctx:kernSpineParser.LydianContext):
|
643
|
+
pass
|
644
|
+
|
645
|
+
# Exit a parse tree produced by kernSpineParser#lydian.
|
646
|
+
def exitLydian(self, ctx:kernSpineParser.LydianContext):
|
647
|
+
pass
|
648
|
+
|
649
|
+
|
650
|
+
# Enter a parse tree produced by kernSpineParser#phrygian.
|
651
|
+
def enterPhrygian(self, ctx:kernSpineParser.PhrygianContext):
|
652
|
+
pass
|
653
|
+
|
654
|
+
# Exit a parse tree produced by kernSpineParser#phrygian.
|
655
|
+
def exitPhrygian(self, ctx:kernSpineParser.PhrygianContext):
|
656
|
+
pass
|
657
|
+
|
658
|
+
|
659
|
+
# Enter a parse tree produced by kernSpineParser#dorian.
|
660
|
+
def enterDorian(self, ctx:kernSpineParser.DorianContext):
|
661
|
+
pass
|
662
|
+
|
663
|
+
# Exit a parse tree produced by kernSpineParser#dorian.
|
664
|
+
def exitDorian(self, ctx:kernSpineParser.DorianContext):
|
665
|
+
pass
|
666
|
+
|
667
|
+
|
668
|
+
# Enter a parse tree produced by kernSpineParser#timeSignature.
|
669
|
+
def enterTimeSignature(self, ctx:kernSpineParser.TimeSignatureContext):
|
670
|
+
pass
|
671
|
+
|
672
|
+
# Exit a parse tree produced by kernSpineParser#timeSignature.
|
673
|
+
def exitTimeSignature(self, ctx:kernSpineParser.TimeSignatureContext):
|
674
|
+
pass
|
675
|
+
|
676
|
+
|
677
|
+
# Enter a parse tree produced by kernSpineParser#numerator.
|
678
|
+
def enterNumerator(self, ctx:kernSpineParser.NumeratorContext):
|
679
|
+
pass
|
680
|
+
|
681
|
+
# Exit a parse tree produced by kernSpineParser#numerator.
|
682
|
+
def exitNumerator(self, ctx:kernSpineParser.NumeratorContext):
|
683
|
+
pass
|
684
|
+
|
685
|
+
|
686
|
+
# Enter a parse tree produced by kernSpineParser#denominator.
|
687
|
+
def enterDenominator(self, ctx:kernSpineParser.DenominatorContext):
|
688
|
+
pass
|
689
|
+
|
690
|
+
# Exit a parse tree produced by kernSpineParser#denominator.
|
691
|
+
def exitDenominator(self, ctx:kernSpineParser.DenominatorContext):
|
692
|
+
pass
|
693
|
+
|
694
|
+
|
695
|
+
# Enter a parse tree produced by kernSpineParser#standardTimeSignature.
|
696
|
+
def enterStandardTimeSignature(self, ctx:kernSpineParser.StandardTimeSignatureContext):
|
697
|
+
pass
|
698
|
+
|
699
|
+
# Exit a parse tree produced by kernSpineParser#standardTimeSignature.
|
700
|
+
def exitStandardTimeSignature(self, ctx:kernSpineParser.StandardTimeSignatureContext):
|
701
|
+
pass
|
702
|
+
|
703
|
+
|
704
|
+
# Enter a parse tree produced by kernSpineParser#additiveTimeSignature.
|
705
|
+
def enterAdditiveTimeSignature(self, ctx:kernSpineParser.AdditiveTimeSignatureContext):
|
706
|
+
pass
|
707
|
+
|
708
|
+
# Exit a parse tree produced by kernSpineParser#additiveTimeSignature.
|
709
|
+
def exitAdditiveTimeSignature(self, ctx:kernSpineParser.AdditiveTimeSignatureContext):
|
710
|
+
pass
|
711
|
+
|
712
|
+
|
713
|
+
# Enter a parse tree produced by kernSpineParser#mixedTimeSignature.
|
714
|
+
def enterMixedTimeSignature(self, ctx:kernSpineParser.MixedTimeSignatureContext):
|
715
|
+
pass
|
716
|
+
|
717
|
+
# Exit a parse tree produced by kernSpineParser#mixedTimeSignature.
|
718
|
+
def exitMixedTimeSignature(self, ctx:kernSpineParser.MixedTimeSignatureContext):
|
719
|
+
pass
|
720
|
+
|
721
|
+
|
722
|
+
# Enter a parse tree produced by kernSpineParser#alternatingTimeSignature.
|
723
|
+
def enterAlternatingTimeSignature(self, ctx:kernSpineParser.AlternatingTimeSignatureContext):
|
724
|
+
pass
|
725
|
+
|
726
|
+
# Exit a parse tree produced by kernSpineParser#alternatingTimeSignature.
|
727
|
+
def exitAlternatingTimeSignature(self, ctx:kernSpineParser.AlternatingTimeSignatureContext):
|
728
|
+
pass
|
729
|
+
|
730
|
+
|
731
|
+
# Enter a parse tree produced by kernSpineParser#alternatingTimeSignatureItem.
|
732
|
+
def enterAlternatingTimeSignatureItem(self, ctx:kernSpineParser.AlternatingTimeSignatureItemContext):
|
733
|
+
pass
|
734
|
+
|
735
|
+
# Exit a parse tree produced by kernSpineParser#alternatingTimeSignatureItem.
|
736
|
+
def exitAlternatingTimeSignatureItem(self, ctx:kernSpineParser.AlternatingTimeSignatureItemContext):
|
737
|
+
pass
|
738
|
+
|
739
|
+
|
740
|
+
# Enter a parse tree produced by kernSpineParser#interchangingTimeSignature.
|
741
|
+
def enterInterchangingTimeSignature(self, ctx:kernSpineParser.InterchangingTimeSignatureContext):
|
742
|
+
pass
|
743
|
+
|
744
|
+
# Exit a parse tree produced by kernSpineParser#interchangingTimeSignature.
|
745
|
+
def exitInterchangingTimeSignature(self, ctx:kernSpineParser.InterchangingTimeSignatureContext):
|
746
|
+
pass
|
747
|
+
|
748
|
+
|
749
|
+
# Enter a parse tree produced by kernSpineParser#meterSymbol.
|
750
|
+
def enterMeterSymbol(self, ctx:kernSpineParser.MeterSymbolContext):
|
751
|
+
pass
|
752
|
+
|
753
|
+
# Exit a parse tree produced by kernSpineParser#meterSymbol.
|
754
|
+
def exitMeterSymbol(self, ctx:kernSpineParser.MeterSymbolContext):
|
755
|
+
pass
|
756
|
+
|
757
|
+
|
758
|
+
# Enter a parse tree produced by kernSpineParser#modernMeterSymbolSign.
|
759
|
+
def enterModernMeterSymbolSign(self, ctx:kernSpineParser.ModernMeterSymbolSignContext):
|
760
|
+
pass
|
761
|
+
|
762
|
+
# Exit a parse tree produced by kernSpineParser#modernMeterSymbolSign.
|
763
|
+
def exitModernMeterSymbolSign(self, ctx:kernSpineParser.ModernMeterSymbolSignContext):
|
764
|
+
pass
|
765
|
+
|
766
|
+
|
767
|
+
# Enter a parse tree produced by kernSpineParser#mensuration.
|
768
|
+
def enterMensuration(self, ctx:kernSpineParser.MensurationContext):
|
769
|
+
pass
|
770
|
+
|
771
|
+
# Exit a parse tree produced by kernSpineParser#mensuration.
|
772
|
+
def exitMensuration(self, ctx:kernSpineParser.MensurationContext):
|
773
|
+
pass
|
774
|
+
|
775
|
+
|
776
|
+
# Enter a parse tree produced by kernSpineParser#metronome.
|
777
|
+
def enterMetronome(self, ctx:kernSpineParser.MetronomeContext):
|
778
|
+
pass
|
779
|
+
|
780
|
+
# Exit a parse tree produced by kernSpineParser#metronome.
|
781
|
+
def exitMetronome(self, ctx:kernSpineParser.MetronomeContext):
|
782
|
+
pass
|
783
|
+
|
784
|
+
|
785
|
+
# Enter a parse tree produced by kernSpineParser#nullInterpretation.
|
786
|
+
def enterNullInterpretation(self, ctx:kernSpineParser.NullInterpretationContext):
|
787
|
+
pass
|
788
|
+
|
789
|
+
# Exit a parse tree produced by kernSpineParser#nullInterpretation.
|
790
|
+
def exitNullInterpretation(self, ctx:kernSpineParser.NullInterpretationContext):
|
791
|
+
pass
|
792
|
+
|
793
|
+
|
794
|
+
# Enter a parse tree produced by kernSpineParser#barline.
|
795
|
+
def enterBarline(self, ctx:kernSpineParser.BarlineContext):
|
796
|
+
pass
|
797
|
+
|
798
|
+
# Exit a parse tree produced by kernSpineParser#barline.
|
799
|
+
def exitBarline(self, ctx:kernSpineParser.BarlineContext):
|
800
|
+
pass
|
801
|
+
|
802
|
+
|
803
|
+
# Enter a parse tree produced by kernSpineParser#barLineType.
|
804
|
+
def enterBarLineType(self, ctx:kernSpineParser.BarLineTypeContext):
|
805
|
+
pass
|
806
|
+
|
807
|
+
# Exit a parse tree produced by kernSpineParser#barLineType.
|
808
|
+
def exitBarLineType(self, ctx:kernSpineParser.BarLineTypeContext):
|
809
|
+
pass
|
810
|
+
|
811
|
+
|
812
|
+
# Enter a parse tree produced by kernSpineParser#restPosition.
|
813
|
+
def enterRestPosition(self, ctx:kernSpineParser.RestPositionContext):
|
814
|
+
pass
|
815
|
+
|
816
|
+
# Exit a parse tree produced by kernSpineParser#restPosition.
|
817
|
+
def exitRestPosition(self, ctx:kernSpineParser.RestPositionContext):
|
818
|
+
pass
|
819
|
+
|
820
|
+
|
821
|
+
# Enter a parse tree produced by kernSpineParser#duration.
|
822
|
+
def enterDuration(self, ctx:kernSpineParser.DurationContext):
|
823
|
+
pass
|
824
|
+
|
825
|
+
# Exit a parse tree produced by kernSpineParser#duration.
|
826
|
+
def exitDuration(self, ctx:kernSpineParser.DurationContext):
|
827
|
+
pass
|
828
|
+
|
829
|
+
|
830
|
+
# Enter a parse tree produced by kernSpineParser#fermata.
|
831
|
+
def enterFermata(self, ctx:kernSpineParser.FermataContext):
|
832
|
+
pass
|
833
|
+
|
834
|
+
# Exit a parse tree produced by kernSpineParser#fermata.
|
835
|
+
def exitFermata(self, ctx:kernSpineParser.FermataContext):
|
836
|
+
pass
|
837
|
+
|
838
|
+
|
839
|
+
# Enter a parse tree produced by kernSpineParser#modernDuration.
|
840
|
+
def enterModernDuration(self, ctx:kernSpineParser.ModernDurationContext):
|
841
|
+
pass
|
842
|
+
|
843
|
+
# Exit a parse tree produced by kernSpineParser#modernDuration.
|
844
|
+
def exitModernDuration(self, ctx:kernSpineParser.ModernDurationContext):
|
845
|
+
pass
|
846
|
+
|
847
|
+
|
848
|
+
# Enter a parse tree produced by kernSpineParser#augmentationDot.
|
849
|
+
def enterAugmentationDot(self, ctx:kernSpineParser.AugmentationDotContext):
|
850
|
+
pass
|
851
|
+
|
852
|
+
# Exit a parse tree produced by kernSpineParser#augmentationDot.
|
853
|
+
def exitAugmentationDot(self, ctx:kernSpineParser.AugmentationDotContext):
|
854
|
+
pass
|
855
|
+
|
856
|
+
|
857
|
+
# Enter a parse tree produced by kernSpineParser#alteration.
|
858
|
+
def enterAlteration(self, ctx:kernSpineParser.AlterationContext):
|
859
|
+
pass
|
860
|
+
|
861
|
+
# Exit a parse tree produced by kernSpineParser#alteration.
|
862
|
+
def exitAlteration(self, ctx:kernSpineParser.AlterationContext):
|
863
|
+
pass
|
864
|
+
|
865
|
+
|
866
|
+
# Enter a parse tree produced by kernSpineParser#staffChange.
|
867
|
+
def enterStaffChange(self, ctx:kernSpineParser.StaffChangeContext):
|
868
|
+
pass
|
869
|
+
|
870
|
+
# Exit a parse tree produced by kernSpineParser#staffChange.
|
871
|
+
def exitStaffChange(self, ctx:kernSpineParser.StaffChangeContext):
|
872
|
+
pass
|
873
|
+
|
874
|
+
|
875
|
+
# Enter a parse tree produced by kernSpineParser#chordSpace.
|
876
|
+
def enterChordSpace(self, ctx:kernSpineParser.ChordSpaceContext):
|
877
|
+
pass
|
878
|
+
|
879
|
+
# Exit a parse tree produced by kernSpineParser#chordSpace.
|
880
|
+
def exitChordSpace(self, ctx:kernSpineParser.ChordSpaceContext):
|
881
|
+
pass
|
882
|
+
|
883
|
+
|
884
|
+
# Enter a parse tree produced by kernSpineParser#graceNote.
|
885
|
+
def enterGraceNote(self, ctx:kernSpineParser.GraceNoteContext):
|
886
|
+
pass
|
887
|
+
|
888
|
+
# Exit a parse tree produced by kernSpineParser#graceNote.
|
889
|
+
def exitGraceNote(self, ctx:kernSpineParser.GraceNoteContext):
|
890
|
+
pass
|
891
|
+
|
892
|
+
|
893
|
+
# Enter a parse tree produced by kernSpineParser#appoggiatura.
|
894
|
+
def enterAppoggiatura(self, ctx:kernSpineParser.AppoggiaturaContext):
|
895
|
+
pass
|
896
|
+
|
897
|
+
# Exit a parse tree produced by kernSpineParser#appoggiatura.
|
898
|
+
def exitAppoggiatura(self, ctx:kernSpineParser.AppoggiaturaContext):
|
899
|
+
pass
|
900
|
+
|
901
|
+
|
902
|
+
# Enter a parse tree produced by kernSpineParser#appoggiaturaMode.
|
903
|
+
def enterAppoggiaturaMode(self, ctx:kernSpineParser.AppoggiaturaModeContext):
|
904
|
+
pass
|
905
|
+
|
906
|
+
# Exit a parse tree produced by kernSpineParser#appoggiaturaMode.
|
907
|
+
def exitAppoggiaturaMode(self, ctx:kernSpineParser.AppoggiaturaModeContext):
|
908
|
+
pass
|
909
|
+
|
910
|
+
|
911
|
+
# Enter a parse tree produced by kernSpineParser#ligatureTie.
|
912
|
+
def enterLigatureTie(self, ctx:kernSpineParser.LigatureTieContext):
|
913
|
+
pass
|
914
|
+
|
915
|
+
# Exit a parse tree produced by kernSpineParser#ligatureTie.
|
916
|
+
def exitLigatureTie(self, ctx:kernSpineParser.LigatureTieContext):
|
917
|
+
pass
|
918
|
+
|
919
|
+
|
920
|
+
# Enter a parse tree produced by kernSpineParser#noteDecoration.
|
921
|
+
def enterNoteDecoration(self, ctx:kernSpineParser.NoteDecorationContext):
|
922
|
+
pass
|
923
|
+
|
924
|
+
# Exit a parse tree produced by kernSpineParser#noteDecoration.
|
925
|
+
def exitNoteDecoration(self, ctx:kernSpineParser.NoteDecorationContext):
|
926
|
+
pass
|
927
|
+
|
928
|
+
|
929
|
+
# Enter a parse tree produced by kernSpineParser#noteDecorationCharX.
|
930
|
+
def enterNoteDecorationCharX(self, ctx:kernSpineParser.NoteDecorationCharXContext):
|
931
|
+
pass
|
932
|
+
|
933
|
+
# Exit a parse tree produced by kernSpineParser#noteDecorationCharX.
|
934
|
+
def exitNoteDecorationCharX(self, ctx:kernSpineParser.NoteDecorationCharXContext):
|
935
|
+
pass
|
936
|
+
|
937
|
+
|
938
|
+
# Enter a parse tree produced by kernSpineParser#phrase.
|
939
|
+
def enterPhrase(self, ctx:kernSpineParser.PhraseContext):
|
940
|
+
pass
|
941
|
+
|
942
|
+
# Exit a parse tree produced by kernSpineParser#phrase.
|
943
|
+
def exitPhrase(self, ctx:kernSpineParser.PhraseContext):
|
944
|
+
pass
|
945
|
+
|
946
|
+
|
947
|
+
# Enter a parse tree produced by kernSpineParser#diatonicPitchAndOctave.
|
948
|
+
def enterDiatonicPitchAndOctave(self, ctx:kernSpineParser.DiatonicPitchAndOctaveContext):
|
949
|
+
pass
|
950
|
+
|
951
|
+
# Exit a parse tree produced by kernSpineParser#diatonicPitchAndOctave.
|
952
|
+
def exitDiatonicPitchAndOctave(self, ctx:kernSpineParser.DiatonicPitchAndOctaveContext):
|
953
|
+
pass
|
954
|
+
|
955
|
+
|
956
|
+
# Enter a parse tree produced by kernSpineParser#trebleNotes.
|
957
|
+
def enterTrebleNotes(self, ctx:kernSpineParser.TrebleNotesContext):
|
958
|
+
pass
|
959
|
+
|
960
|
+
# Exit a parse tree produced by kernSpineParser#trebleNotes.
|
961
|
+
def exitTrebleNotes(self, ctx:kernSpineParser.TrebleNotesContext):
|
962
|
+
pass
|
963
|
+
|
964
|
+
|
965
|
+
# Enter a parse tree produced by kernSpineParser#bassNotes.
|
966
|
+
def enterBassNotes(self, ctx:kernSpineParser.BassNotesContext):
|
967
|
+
pass
|
968
|
+
|
969
|
+
# Exit a parse tree produced by kernSpineParser#bassNotes.
|
970
|
+
def exitBassNotes(self, ctx:kernSpineParser.BassNotesContext):
|
971
|
+
pass
|
972
|
+
|
973
|
+
|
974
|
+
# Enter a parse tree produced by kernSpineParser#accidental.
|
975
|
+
def enterAccidental(self, ctx:kernSpineParser.AccidentalContext):
|
976
|
+
pass
|
977
|
+
|
978
|
+
# Exit a parse tree produced by kernSpineParser#accidental.
|
979
|
+
def exitAccidental(self, ctx:kernSpineParser.AccidentalContext):
|
980
|
+
pass
|
981
|
+
|
982
|
+
|
983
|
+
# Enter a parse tree produced by kernSpineParser#alterationDisplay.
|
984
|
+
def enterAlterationDisplay(self, ctx:kernSpineParser.AlterationDisplayContext):
|
985
|
+
pass
|
986
|
+
|
987
|
+
# Exit a parse tree produced by kernSpineParser#alterationDisplay.
|
988
|
+
def exitAlterationDisplay(self, ctx:kernSpineParser.AlterationDisplayContext):
|
989
|
+
pass
|
990
|
+
|
991
|
+
|
992
|
+
# Enter a parse tree produced by kernSpineParser#turn.
|
993
|
+
def enterTurn(self, ctx:kernSpineParser.TurnContext):
|
994
|
+
pass
|
995
|
+
|
996
|
+
# Exit a parse tree produced by kernSpineParser#turn.
|
997
|
+
def exitTurn(self, ctx:kernSpineParser.TurnContext):
|
998
|
+
pass
|
999
|
+
|
1000
|
+
|
1001
|
+
# Enter a parse tree produced by kernSpineParser#userAssignable.
|
1002
|
+
def enterUserAssignable(self, ctx:kernSpineParser.UserAssignableContext):
|
1003
|
+
pass
|
1004
|
+
|
1005
|
+
# Exit a parse tree produced by kernSpineParser#userAssignable.
|
1006
|
+
def exitUserAssignable(self, ctx:kernSpineParser.UserAssignableContext):
|
1007
|
+
pass
|
1008
|
+
|
1009
|
+
|
1010
|
+
# Enter a parse tree produced by kernSpineParser#glissando.
|
1011
|
+
def enterGlissando(self, ctx:kernSpineParser.GlissandoContext):
|
1012
|
+
pass
|
1013
|
+
|
1014
|
+
# Exit a parse tree produced by kernSpineParser#glissando.
|
1015
|
+
def exitGlissando(self, ctx:kernSpineParser.GlissandoContext):
|
1016
|
+
pass
|
1017
|
+
|
1018
|
+
|
1019
|
+
# Enter a parse tree produced by kernSpineParser#articulation.
|
1020
|
+
def enterArticulation(self, ctx:kernSpineParser.ArticulationContext):
|
1021
|
+
pass
|
1022
|
+
|
1023
|
+
# Exit a parse tree produced by kernSpineParser#articulation.
|
1024
|
+
def exitArticulation(self, ctx:kernSpineParser.ArticulationContext):
|
1025
|
+
pass
|
1026
|
+
|
1027
|
+
|
1028
|
+
# Enter a parse tree produced by kernSpineParser#accent.
|
1029
|
+
def enterAccent(self, ctx:kernSpineParser.AccentContext):
|
1030
|
+
pass
|
1031
|
+
|
1032
|
+
# Exit a parse tree produced by kernSpineParser#accent.
|
1033
|
+
def exitAccent(self, ctx:kernSpineParser.AccentContext):
|
1034
|
+
pass
|
1035
|
+
|
1036
|
+
|
1037
|
+
# Enter a parse tree produced by kernSpineParser#tenuto.
|
1038
|
+
def enterTenuto(self, ctx:kernSpineParser.TenutoContext):
|
1039
|
+
pass
|
1040
|
+
|
1041
|
+
# Exit a parse tree produced by kernSpineParser#tenuto.
|
1042
|
+
def exitTenuto(self, ctx:kernSpineParser.TenutoContext):
|
1043
|
+
pass
|
1044
|
+
|
1045
|
+
|
1046
|
+
# Enter a parse tree produced by kernSpineParser#staccatissimo.
|
1047
|
+
def enterStaccatissimo(self, ctx:kernSpineParser.StaccatissimoContext):
|
1048
|
+
pass
|
1049
|
+
|
1050
|
+
# Exit a parse tree produced by kernSpineParser#staccatissimo.
|
1051
|
+
def exitStaccatissimo(self, ctx:kernSpineParser.StaccatissimoContext):
|
1052
|
+
pass
|
1053
|
+
|
1054
|
+
|
1055
|
+
# Enter a parse tree produced by kernSpineParser#pizzicato.
|
1056
|
+
def enterPizzicato(self, ctx:kernSpineParser.PizzicatoContext):
|
1057
|
+
pass
|
1058
|
+
|
1059
|
+
# Exit a parse tree produced by kernSpineParser#pizzicato.
|
1060
|
+
def exitPizzicato(self, ctx:kernSpineParser.PizzicatoContext):
|
1061
|
+
pass
|
1062
|
+
|
1063
|
+
|
1064
|
+
# Enter a parse tree produced by kernSpineParser#spiccato.
|
1065
|
+
def enterSpiccato(self, ctx:kernSpineParser.SpiccatoContext):
|
1066
|
+
pass
|
1067
|
+
|
1068
|
+
# Exit a parse tree produced by kernSpineParser#spiccato.
|
1069
|
+
def exitSpiccato(self, ctx:kernSpineParser.SpiccatoContext):
|
1070
|
+
pass
|
1071
|
+
|
1072
|
+
|
1073
|
+
# Enter a parse tree produced by kernSpineParser#staccato.
|
1074
|
+
def enterStaccato(self, ctx:kernSpineParser.StaccatoContext):
|
1075
|
+
pass
|
1076
|
+
|
1077
|
+
# Exit a parse tree produced by kernSpineParser#staccato.
|
1078
|
+
def exitStaccato(self, ctx:kernSpineParser.StaccatoContext):
|
1079
|
+
pass
|
1080
|
+
|
1081
|
+
|
1082
|
+
# Enter a parse tree produced by kernSpineParser#editorialIntervention.
|
1083
|
+
def enterEditorialIntervention(self, ctx:kernSpineParser.EditorialInterventionContext):
|
1084
|
+
pass
|
1085
|
+
|
1086
|
+
# Exit a parse tree produced by kernSpineParser#editorialIntervention.
|
1087
|
+
def exitEditorialIntervention(self, ctx:kernSpineParser.EditorialInterventionContext):
|
1088
|
+
pass
|
1089
|
+
|
1090
|
+
|
1091
|
+
# Enter a parse tree produced by kernSpineParser#slurStart.
|
1092
|
+
def enterSlurStart(self, ctx:kernSpineParser.SlurStartContext):
|
1093
|
+
pass
|
1094
|
+
|
1095
|
+
# Exit a parse tree produced by kernSpineParser#slurStart.
|
1096
|
+
def exitSlurStart(self, ctx:kernSpineParser.SlurStartContext):
|
1097
|
+
pass
|
1098
|
+
|
1099
|
+
|
1100
|
+
# Enter a parse tree produced by kernSpineParser#ligatureTieStart.
|
1101
|
+
def enterLigatureTieStart(self, ctx:kernSpineParser.LigatureTieStartContext):
|
1102
|
+
pass
|
1103
|
+
|
1104
|
+
# Exit a parse tree produced by kernSpineParser#ligatureTieStart.
|
1105
|
+
def exitLigatureTieStart(self, ctx:kernSpineParser.LigatureTieStartContext):
|
1106
|
+
pass
|
1107
|
+
|
1108
|
+
|
1109
|
+
# Enter a parse tree produced by kernSpineParser#tieContinue.
|
1110
|
+
def enterTieContinue(self, ctx:kernSpineParser.TieContinueContext):
|
1111
|
+
pass
|
1112
|
+
|
1113
|
+
# Exit a parse tree produced by kernSpineParser#tieContinue.
|
1114
|
+
def exitTieContinue(self, ctx:kernSpineParser.TieContinueContext):
|
1115
|
+
pass
|
1116
|
+
|
1117
|
+
|
1118
|
+
# Enter a parse tree produced by kernSpineParser#ligatureTieEnd.
|
1119
|
+
def enterLigatureTieEnd(self, ctx:kernSpineParser.LigatureTieEndContext):
|
1120
|
+
pass
|
1121
|
+
|
1122
|
+
# Exit a parse tree produced by kernSpineParser#ligatureTieEnd.
|
1123
|
+
def exitLigatureTieEnd(self, ctx:kernSpineParser.LigatureTieEndContext):
|
1124
|
+
pass
|
1125
|
+
|
1126
|
+
|
1127
|
+
# Enter a parse tree produced by kernSpineParser#slurEnd.
|
1128
|
+
def enterSlurEnd(self, ctx:kernSpineParser.SlurEndContext):
|
1129
|
+
pass
|
1130
|
+
|
1131
|
+
# Exit a parse tree produced by kernSpineParser#slurEnd.
|
1132
|
+
def exitSlurEnd(self, ctx:kernSpineParser.SlurEndContext):
|
1133
|
+
pass
|
1134
|
+
|
1135
|
+
|
1136
|
+
# Enter a parse tree produced by kernSpineParser#barLineCrossedNoteStart.
|
1137
|
+
def enterBarLineCrossedNoteStart(self, ctx:kernSpineParser.BarLineCrossedNoteStartContext):
|
1138
|
+
pass
|
1139
|
+
|
1140
|
+
# Exit a parse tree produced by kernSpineParser#barLineCrossedNoteStart.
|
1141
|
+
def exitBarLineCrossedNoteStart(self, ctx:kernSpineParser.BarLineCrossedNoteStartContext):
|
1142
|
+
pass
|
1143
|
+
|
1144
|
+
|
1145
|
+
# Enter a parse tree produced by kernSpineParser#barLineCrossedNoteEnd.
|
1146
|
+
def enterBarLineCrossedNoteEnd(self, ctx:kernSpineParser.BarLineCrossedNoteEndContext):
|
1147
|
+
pass
|
1148
|
+
|
1149
|
+
# Exit a parse tree produced by kernSpineParser#barLineCrossedNoteEnd.
|
1150
|
+
def exitBarLineCrossedNoteEnd(self, ctx:kernSpineParser.BarLineCrossedNoteEndContext):
|
1151
|
+
pass
|
1152
|
+
|
1153
|
+
|
1154
|
+
# Enter a parse tree produced by kernSpineParser#stem.
|
1155
|
+
def enterStem(self, ctx:kernSpineParser.StemContext):
|
1156
|
+
pass
|
1157
|
+
|
1158
|
+
# Exit a parse tree produced by kernSpineParser#stem.
|
1159
|
+
def exitStem(self, ctx:kernSpineParser.StemContext):
|
1160
|
+
pass
|
1161
|
+
|
1162
|
+
|
1163
|
+
# Enter a parse tree produced by kernSpineParser#beam.
|
1164
|
+
def enterBeam(self, ctx:kernSpineParser.BeamContext):
|
1165
|
+
pass
|
1166
|
+
|
1167
|
+
# Exit a parse tree produced by kernSpineParser#beam.
|
1168
|
+
def exitBeam(self, ctx:kernSpineParser.BeamContext):
|
1169
|
+
pass
|
1170
|
+
|
1171
|
+
|
1172
|
+
# Enter a parse tree produced by kernSpineParser#mordent.
|
1173
|
+
def enterMordent(self, ctx:kernSpineParser.MordentContext):
|
1174
|
+
pass
|
1175
|
+
|
1176
|
+
# Exit a parse tree produced by kernSpineParser#mordent.
|
1177
|
+
def exitMordent(self, ctx:kernSpineParser.MordentContext):
|
1178
|
+
pass
|
1179
|
+
|
1180
|
+
|
1181
|
+
# Enter a parse tree produced by kernSpineParser#trill.
|
1182
|
+
def enterTrill(self, ctx:kernSpineParser.TrillContext):
|
1183
|
+
pass
|
1184
|
+
|
1185
|
+
# Exit a parse tree produced by kernSpineParser#trill.
|
1186
|
+
def exitTrill(self, ctx:kernSpineParser.TrillContext):
|
1187
|
+
pass
|
1188
|
+
|
1189
|
+
|
1190
|
+
# Enter a parse tree produced by kernSpineParser#footnote.
|
1191
|
+
def enterFootnote(self, ctx:kernSpineParser.FootnoteContext):
|
1192
|
+
pass
|
1193
|
+
|
1194
|
+
# Exit a parse tree produced by kernSpineParser#footnote.
|
1195
|
+
def exitFootnote(self, ctx:kernSpineParser.FootnoteContext):
|
1196
|
+
pass
|
1197
|
+
|
1198
|
+
|
1199
|
+
|
1200
|
+
del kernSpineParser
|