Mercurial > hg-stable
diff mercurial/debugcommands.py @ 38869:7e7e2b2ff284
fileset: add stub for weight-based optimization
The main purpose of this change is to group basic patterns, which can be
mapped to a plain matcher. I'm not so interested in a weight of each function.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Sat, 21 Jul 2018 15:52:26 +0900 |
parents | 6371ab78c3b3 |
children | 4d992e3f10ba |
line wrap: on
line diff
--- a/mercurial/debugcommands.py Sat Jul 21 16:16:44 2018 +0900 +++ b/mercurial/debugcommands.py Sat Jul 21 15:52:26 2018 +0900 @@ -902,6 +902,7 @@ stages = [ ('parsed', pycompat.identity), ('analyzed', filesetlang.analyze), + ('optimized', filesetlang.optimize), ] stagenames = set(n for n, f in stages)