mirror of
https://github.com/less/less.js.git
synced 2026-05-01 03:00:22 -04:00
removed wildcard parser
This commit is contained in:
@@ -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 }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user