addOpenWay method
Implementation
void addOpenWay(Rule rule) {
if (rule is PositiveRule) {
openWays.addKeyValue(rule.keyMatcher, rule.valueMatcher);
} else if (rule is NegativeRule) {
openWays.addAttribute(rule.attributeMatcher);
} else {
print("Unknown rule ${rule.runtimeType}");
}
}