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

(meg/match ~(sequence (capture "a") "b" (capture (backmatch)))
           "aba")

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

current frame
status: exiting frame 4 with value: 3
peg: (capture (backmatch))
text: aba
index: 2 advanced to: 3
matched: a

frames call stack
4 (capture (backmatch))
0 (sequence (capture "a") "b" (capture (backmatch)))