| 134 | } |
| 135 | |
| 136 | class CSSNestedAtRule { |
| 137 | static { |
| 138 | this.prototype.type = RuleType.NestedAt; |
| 139 | this.prototype.atName = ''; |
| 140 | this.prototype.atCond = ''; |
| 141 | } |
| 142 | rules = []; |
| 143 | |
| 144 | constructor(name, cond) { |
| 145 | this.atName = name; |
| 146 | this.atCond = cond; |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | export class CSSParser { |
| 151 | static { |
nothing calls this directly
no outgoing calls
no test coverage detected