Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/fileset.py @ 38867:48fc2a8af345
fileset: drop 'group' node from tree to be evaluated
This helps rewriting a parsed tree.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Sat, 21 Jul 2018 16:13:30 +0900 |
parents | 6371ab78c3b3 |
children | 3ea6ce609747 |
comparison
equal
deleted
inserted
replaced
38866:6371ab78c3b3 | 38867:48fc2a8af345 |
---|---|
436 'and': andmatch, | 436 'and': andmatch, |
437 'or': ormatch, | 437 'or': ormatch, |
438 'minus': minusmatch, | 438 'minus': minusmatch, |
439 'negate': negatematch, | 439 'negate': negatematch, |
440 'list': listmatch, | 440 'list': listmatch, |
441 'group': getmatch, | |
442 'not': notmatch, | 441 'not': notmatch, |
443 'func': func, | 442 'func': func, |
444 } | 443 } |
445 | 444 |
446 class matchctx(object): | 445 class matchctx(object): |