public CssDeclaration(CssProperty property, CssValue value, string priority) : base(NodeKind.Declaration) { Info = property; Value = value; Priority = priority; }
public static CssProperty Get(string name) { CssProperty propertyInfo; if (!Map.TryGetValue(name, out propertyInfo)) { propertyInfo = new CssProperty(name); } return propertyInfo; }