[up] [log] [?]
[first] [prev] [entry] [exit] [next] [last]
(meg/match ~(sequence (only-tags (sequence (capture 1 :a) (capture 2 :b))) (backref :a))
"xyz")
# =>
@["x"]
captures and tags
captures: @["x"]
tagged-captures:
tags: @[:a :b :a]
values: @["x" "yz" "x"]
current frame
status: exiting frame 0 with value: 3
peg: (sequence (only-tags (sequence (capture 1 :a) (capture 2 :b))) (backref :a))
text: xyz
index: 0 advanced to: 3
matched: xyz
frames call stack
0 (sequence (only-tags (sequence (capture 1 :a) (capture 2 :b))) (backref :a))