diff mercurial/minifileset.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 4fe8d1f077b8
children 48fc2a8af345
line wrap: on
line diff
--- a/mercurial/minifileset.py	Fri Aug 03 11:40:15 2018 -0400
+++ b/mercurial/minifileset.py	Sat Jul 21 16:11:36 2018 +0900
@@ -89,4 +89,5 @@
     root except for "bin/README".
     """
     tree = filesetlang.parse(text)
+    tree = filesetlang.analyze(tree)
     return _compile(tree)