matchOpenWay method
Implementation
void matchOpenWay(Way way, Tile tile, List<Shape> matchingList) {
if (matches(way.tags, tile.indoorLevel)) {
matchingList.addAll((instructions as ShapeInstructions).shapeOpenWays);
subRules.forEach((element) {
element.matchOpenWay(way, tile, matchingList);
});
}
}