summaryrefslogtreecommitdiff
path: root/bin/lib/less/tree/anonymous.js
diff options
context:
space:
mode:
Diffstat (limited to 'bin/lib/less/tree/anonymous.js')
-rw-r--r--bin/lib/less/tree/anonymous.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/bin/lib/less/tree/anonymous.js b/bin/lib/less/tree/anonymous.js
deleted file mode 100644
index 460c9ec7..00000000
--- a/bin/lib/less/tree/anonymous.js
+++ /dev/null
@@ -1,13 +0,0 @@
-(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'));