blob: 8e289281a43ad571d015ac27b0ad6cfcba7a9114 [file] [log] [blame]
// Generated by CoffeeScript 1.9.3
var DeclarationBlock, Rule, Selector;
Selector = require('./rule/Selector');
DeclarationBlock = require('./rule/DeclarationBlock');
module.exports = Rule = (function() {
function Rule(selector) {
this.selector = new Selector(selector);
this.styles = new DeclarationBlock;
}
Rule.prototype.setStyles = function(styles) {
this.styles.set(styles);
return this;
};
return Rule;
})();