2010-03-13 16:34:48 +08:00
|
|
|
if (typeof(require) !== 'undefined') { var tree = require('less/tree') }
|
2010-03-07 06:54:11 +08:00
|
|
|
|
|
|
|
tree.Comment = function Comment(value) {
|
|
|
|
this.value = value;
|
|
|
|
};
|
|
|
|
tree.Comment.prototype = {
|
|
|
|
toCSS: function () {
|
|
|
|
return this.value;
|
|
|
|
}
|
|
|
|
};
|