Mercurial > public > mercurial-scm > hg
diff mercurial/revset.py @ 25800:f8f7ae0f4d98
parser: add comment about structure of elements to each table
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Sun, 05 Jul 2015 11:06:58 +0900 |
parents | 026105c442d7 |
children | 272ff3680bf3 |
line wrap: on
line diff
--- a/mercurial/revset.py Wed Jul 15 04:45:58 2015 +0900 +++ b/mercurial/revset.py Sun Jul 05 11:06:58 2015 +0900 @@ -115,6 +115,7 @@ return baseset(sorted(reachable)) elements = { + # token-type: binding-strength, prefix, infix, suffix "(": (21, ("group", 1, ")"), ("func", 1, ")")), "##": (20, None, ("_concat", 20)), "~": (18, None, ("ancestor", 18)),