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

(meg/match ~(sequence (constant 5 :tag) (sub (capture "abc" :tag) (backref :tag)))
           "abcdef")

captures and tags
captures: @[5]
tagged-captures:
  tags: @[:tag]
  values: @[5]

current frame
status: exiting frame 1 with value: 0
peg: (constant 5 :tag)
text: abcdef
index: 0
matched: 

frames call stack
1 (constant 5 :tag)
0 (sequence (constant 5 :tag) (sub (capture "abc" :tag) (backref :tag)))