| 121 | } |
| 122 | |
| 123 | class CSSRegularAtRule { |
| 124 | static { |
| 125 | this.prototype.type = RuleType.RegularAt; |
| 126 | this.prototype.atName = ''; |
| 127 | this.prototype.atCond = ''; |
| 128 | } |
| 129 | |
| 130 | constructor(name, cond) { |
| 131 | this.atName = name; |
| 132 | this.atCond = cond; |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | class CSSNestedAtRule { |
| 137 | static { |
nothing calls this directly
no outgoing calls
no test coverage detected