public accept(visitor: Visitor): void {
        visitor.visitState(this);

        this.regions.forEach(region => region.accept(visitor));