Checks whether trail corresponds to any patterns that identify unknowns. Only matches exactly (exact attribute match for self or parent).
| 111 | // Checks whether trail corresponds to any patterns that identify |
| 112 | // unknowns. Only matches exactly (exact attribute match for self or parent). |
| 113 | bool CheckForUnknownExact(const AttributeTrail& trail) const { |
| 114 | return CheckForUnknown(trail, false); |
| 115 | } |
| 116 | |
| 117 | // Checks whether trail corresponds to any patterns that define unknowns. |
| 118 | // Matches if a parent or any descendant (select or index of) the attribute. |
no outgoing calls