comparison 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
comparison
equal deleted inserted replaced
38825:8a9f6076e60c 38826:6371ab78c3b3
899 opts = pycompat.byteskwargs(opts) 899 opts = pycompat.byteskwargs(opts)
900 ctx = scmutil.revsingle(repo, opts.get('rev'), None) 900 ctx = scmutil.revsingle(repo, opts.get('rev'), None)
901 901
902 stages = [ 902 stages = [
903 ('parsed', pycompat.identity), 903 ('parsed', pycompat.identity),
904 ('analyzed', filesetlang.analyze),
904 ] 905 ]
905 stagenames = set(n for n, f in stages) 906 stagenames = set(n for n, f in stages)
906 907
907 showalways = set() 908 showalways = set()
908 if ui.verbose and not opts['show_stage']: 909 if ui.verbose and not opts['show_stage']: