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