summaryrefslogtreecommitdiff
path: root/bin/lib/less/tree/keyword.js
diff options
context:
space:
mode:
Diffstat (limited to 'bin/lib/less/tree/keyword.js')
-rw-r--r--bin/lib/less/tree/keyword.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/bin/lib/less/tree/keyword.js b/bin/lib/less/tree/keyword.js
deleted file mode 100644
index 701b79e5..00000000
--- a/bin/lib/less/tree/keyword.js
+++ /dev/null
@@ -1,19 +0,0 @@
-(function (tree) {
-
-tree.Keyword = function (value) { this.value = value };
-tree.Keyword.prototype = {
- eval: function () { return this },
- toCSS: function () { return this.value },
- compare: function (other) {
- if (other instanceof tree.Keyword) {
- return other.value === this.value ? 0 : 1;
- } else {
- return -1;
- }
- }
-};
-
-tree.True = new(tree.Keyword)('true');
-tree.False = new(tree.Keyword)('false');
-
-})(require('../tree'));