MCPcopy Create free account
hub / github.com/CanadaHonk/shadow / CSSNestedAtRule

Class CSSNestedAtRule

engine/cssparser.js:136–148  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

134}
135
136class 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
150export class CSSParser {
151 static {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected