Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(3)

Unified Diff: input/regression/context-denies-defaultchild-mod.ly

Issue 346050043: Issue 5332: \denies C should cancel \defaultchild C (Closed)
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: input/regression/context-denies-defaultchild-mod.ly
diff --git a/input/regression/context-denies-defaultchild-mod.ly b/input/regression/context-denies-defaultchild-mod.ly
new file mode 100644
index 0000000000000000000000000000000000000000..95072bde4af45f12154758455ccb0fb6b4fa0ef7
--- /dev/null
+++ b/input/regression/context-denies-defaultchild-mod.ly
@@ -0,0 +1,38 @@
+\version "2.19.80"
+
+\header {
+ texidoc = "@code{\\denies} @var{context} in a @code{\\with} block cancels
+a prior @code{\\defaultchild} @var{context}. CREATED should appear in the
+left margin."
+}
+
+\layout {
+ \context {
+ \Score
+ \accepts "AdHocStaff"
+ }
+
+ \context {
+ \Staff
+ \name "AdHocStaff"
+ \alias Staff
+ instrumentName = "CREATED"
+ }
+
+ \context {
+ \Staff
+ instrumentName = "DENIED"
+ }
+
+}
+
+\new Score \with {
+ %% If this cancelled \accepts without cancelling \defaultchild,
+ %% Score would still accept a Staff because default children are
+ %% implicitly accepted with the highest priority.
+ \denies "Staff"
+} <<
+ %% This builds a path of accepted contexts from Score to Voice.
+ %% Which context it chooses tells whether \denies did its job.
+ \context Voice s1
+>>

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b