Files
less.js/lib/less/tree/comment.js
cloudhead f5f0919349 Refactored some of the evaluation mechanisms
- Don't call `eval` from `toCSS`
- Every node responds to `eval`
2010-05-07 23:21:16 -04:00

11 lines
231 B
JavaScript

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;
},
};