diff mercurial/debugcommands.py @ 38826:6371ab78c3b3

fileset: add phase to transform parsed tree This isn't strictly necessary, but I decided to just follow the strategy of the revset parsing.
author Yuya Nishihara <yuya@tcha.org>
date Sat, 21 Jul 2018 16:11:36 +0900
parents 96b2e66dfa74
children 7e7e2b2ff284
line wrap: on
line diff
--- a/mercurial/debugcommands.py	Fri Aug 03 11:40:15 2018 -0400
+++ b/mercurial/debugcommands.py	Sat Jul 21 16:11:36 2018 +0900
@@ -901,6 +901,7 @@
 
     stages = [
         ('parsed', pycompat.identity),
+        ('analyzed', filesetlang.analyze),
     ]
     stagenames = set(n for n, f in stages)