parse comments inside expressions

This commit is contained in:
Alexis Sellier
2011-03-24 14:25:16 -04:00
parent 333d1def44
commit d444d1bbdb

View File

@@ -728,7 +728,8 @@ less.Parser = function Parser(env) {
//
entity: function () {
return $(this.entities.literal) || $(this.entities.variable) || $(this.entities.url) ||
$(this.entities.call) || $(this.entities.keyword) || $(this.entities.javascript);
$(this.entities.call) || $(this.entities.keyword) || $(this.entities.javascript) ||
$(this.comment);
},
//