We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b80f0b commit 0419f37Copy full SHA for 0419f37
1 file changed
lib/csscomb.js
@@ -85,10 +85,11 @@ Comb.prototype = {
85
processString: function(text, filename) {
86
var tree;
87
try {
88
- tree = this.processTree(cssp.parse(text));
+ tree = cssp.parse(text);
89
} catch (e) {
90
throw new Error('Parsing error at ' + filename + ': ' + e.message);
91
}
92
+ tree = this.processTree(tree);
93
return cssp.translate(tree);
94
},
95
0 commit comments