Пример #1
0
 public bool I_am_worse(ICssSpecificityData spec, bool important) {
   if (!this.important && important) return true;
   if (this.important && !important) return false;
   return this.spec.CompareTo(spec) < 0;
 }
Пример #2
0
 public specificity(ICssSpecificityData spec, bool important, string value) { this.spec = spec; this.important = important; this.value = value; }