From 57013ebdf9d5de1e53496c6db60cffd1396cb1ed Mon Sep 17 00:00:00 2001 From: cloudhead Date: Sat, 6 Mar 2010 17:54:11 -0500 Subject: [PATCH] comments.js init --- lib/less/tree/comment.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lib/less/tree/comment.js diff --git a/lib/less/tree/comment.js b/lib/less/tree/comment.js new file mode 100644 index 00000000..eb91a445 --- /dev/null +++ b/lib/less/tree/comment.js @@ -0,0 +1,10 @@ +if (typeof(window) === 'undefined') { var tree = require(require('path').join(__dirname, '..', '..', 'less', 'tree')); } + +tree.Comment = function Comment(value) { + this.value = value; +}; +tree.Comment.prototype = { + toCSS: function () { + return this.value; + } +};