removed wildcard parser

This commit is contained in:
cloudhead
2010-05-18 19:12:41 -04:00
parent ed1a632f35
commit eaf3c7d187

View File

@@ -374,13 +374,10 @@ less.Parser = function Parser(env) {
if (name) { return new(tree.Call)(name[1], args) }
},
wildcard: function () {
if ($('*')) { return { wildcard: true } }
},
arguments: function () {
var args = [], arg;
while (arg = $(this.entities.wildcard) || $(this.expression)) {
while (arg = $(this.expression)) {
args.push(arg);
if (! $(',')) { break }
}