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

(meg/match ~{:close (capture (backmatch :delim)) :main (sequence :thing -1) :open (capture (sequence "[" (some "_") "]") :delim) :thing (choice (unref (sequence :open :thing :close)) (capture (any (if-not "[" 1))))}
           "[__][_]a[_][__]")

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

current frame
status: exiting frame 44 with value: 15
peg: :close
text: [__][_]a[_][__]
index: 11 advanced to: 15
matched: [__]

frames call stack
44 :close
4 (sequence :open :thing :close)
3 (unref (sequence :open :thing :close))
2 (choice (unref (sequence :open :thing :close)) (capture (any (if-not "[" 1))))
1 :thing
0 (sequence :thing -1)