From 040b572d95e4ca27e1ada6113c405b8a1eb4a669 Mon Sep 17 00:00:00 2001 From: Runxi Yu Date: Wed, 11 Mar 2026 20:41:32 +0800 Subject: commitquery: Merge from ancestor and mergebases --- commitquery/bits.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 commitquery/bits.go (limited to 'commitquery/bits.go') diff --git a/commitquery/bits.go b/commitquery/bits.go new file mode 100644 index 00000000..36ffff29 --- /dev/null +++ b/commitquery/bits.go @@ -0,0 +1,14 @@ +package commitquery + +type markBits uint8 + +const ( + markLeft markBits = 1 << iota + markRight + markStale + markResult +) + +const ( + allMarks = markLeft | markRight | markStale | markResult +) -- cgit v1.3.1-10-gc9f91