summaryrefslogtreecommitdiff
path: root/bin/lib/less/tree/anonymous.js
blob: 460c9ec784ed939c8278176a8a39d0dd9f5b0e68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(function (tree) {

tree.Anonymous = function (string) {
    this.value = string.value || string;
};
tree.Anonymous.prototype = {
    toCSS: function () {
        return this.value;
    },
    eval: function () { return this }
};

})(require('../tree'));