Exemplo n.º 1
0
 internal override MediaQuery Bind(Scope scope)
 {
     return(new EqualFeatureMedia(Feature, EqualsValue.Bind(scope), this));
 }
Exemplo n.º 2
0
 internal override MediaQuery Bind(Scope scope)
 {
     return(this);
 }
Exemplo n.º 3
0
 internal override MediaQuery Bind(Scope scope)
 {
     return(new MaxFeatureMedia(Feature, Max.Bind(scope), this));
 }
Exemplo n.º 4
0
 internal abstract MediaQuery Bind(Scope scope);
Exemplo n.º 5
0
 internal override MediaQuery Bind(Scope scope)
 {
     return(new CommaDelimitedMedia(Clauses.Select(c => c.Bind(scope)).ToList(), this));
 }
Exemplo n.º 6
0
 internal override MediaQuery Bind(Scope scope)
 {
     return(new AndMedia(LeftHand.Bind(scope), RightHand.Bind(scope), this));
 }
Exemplo n.º 7
0
 internal override MediaQuery Bind(Scope scope)
 {
     return(new OnlyMedia(Clause.Bind(scope), this));
 }