You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This feels very uninituitive to me. The FEAX code shouldn't be affected by how the class is defined.
The text was updated successfully, but these errors were encountered:
sharoncorrell
changed the title
Nested class names aren't handled expanding substitution rules.
Nested class names aren't handled when expanding substitution rules.
Sep 7, 2020
You can't use
@ClassName
in a substitution lookup if the class is defined in terms of other classes. So this workslookup InsertKashida { sub @SubClass1 by @SubClass1 kashida-ar; sub @SubClass2 by @SubClass2 kashida-ar; } InsertKashida;
but not this:
lookup InsertKashida { sub @TheClass by @TheClass kashida-ar; } InsertKashida;
where
@TheClass
is fined in classes.xml by:<class name="TheClass> @SubClass1 @SubClass2 </class>
This feels very uninituitive to me. The FEAX code shouldn't be affected by how the class is defined.
The text was updated successfully, but these errors were encountered: