[up] [log] [?]
[first]  [entry] [exit]  [last]

(meg/match ~(sequence (only-tags (sequence (capture 1 :a) (capture 2 :b))) (backref :a))
           "xyz")

captures and tags
captures: @["x"]
tagged-captures:
  tags: @[:a]
  values: @["x"]

current frame
status: exiting frame 3 with value: 1
peg: (capture 1 :a)
text: xyz
index: 0 advanced to: 1
matched: x

frames call stack
3 (capture 1 :a)
2 (sequence (capture 1 :a) (capture 2 :b))
1 (only-tags (sequence (capture 1 :a) (capture 2 :b)))
0 (sequence (only-tags (sequence (capture 1 :a) (capture 2 :b))) (backref :a))