com.google.common.css.compiler.ast.CssCharSetNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of closure-stylesheets Show documentation
Show all versions of closure-stylesheets Show documentation
Closure Stylesheets is an extension to CSS that adds variables, functions,
conditionals, and mixins to standard CSS. The tool also supports
minification, linting, RTL flipping, and CSS class renaming.
package com.google.common.css.compiler.ast;
import java.util.List;
public class CssCharSetNode extends CssAtRuleNode {
public CssCharSetNode(List comments) {
super(CssAtRuleNode.Type.CHARSET, new CssLiteralNode("charset"), comments);
}
public CssCharSetNode(CssCharSetNode node) {
super(node);
}
@Override
public CssNode deepCopy() {
return new CssCharSetNode(this);
}
}