()
| 23396 | .join(",") |
| 23397 | } |
| 23398 | compile() { |
| 23399 | const propertyParsers = this.getSubparticles().filter(particle => particle.doesExtend("propertyParser")) |
| 23400 | if (!propertyParsers.length) return "" |
| 23401 | const spaces = " " |
| 23402 | return `${this.getSelector()} { |
| 23403 | ${propertyParsers.map(subparticle => subparticle.compile(spaces)).join("\n")} |
| 23404 | }\n` |
| 23405 | } |
| 23406 | } |
| 23407 | |
| 23408 | window.hakonParser = hakonParser |
nothing calls this directly
no test coverage detected