if (typeof(require) !== 'undefined') { var tree = require('less/tree') } tree.Comment = function Comment(value) { this.value = value; }; tree.Comment.prototype = { toCSS: function () { return this.value; } };