return (StyleSheet) result;
}
private void checkForWarnings(ASTCssNode result) {
LessAstValidator validator = new LessAstValidator(problemsHandler);
validator.validate(result);
}
private void solveParentChildRelationShips(ASTCssNode node) {
for (ASTCssNode kid : node.getChilds()) {
kid.setParent(node);