lib/regexp-examples/backreferences.rb in regexp-examples-0.5.2 vs lib/regexp-examples/backreferences.rb in regexp-examples-0.5.3
- old
+ new
@@ -18,9 +18,11 @@
private
def find_backref_for(full_example, group_id)
full_example.all_subgroups.detect do |subgroup|
subgroup.group_id == group_id
end || raise(RegexpExamples::BackrefNotFound)
+ # TODO: Regex like /\10/ should match the octal representation of their character code,
+ # if there is no nth grouped subexpression. For example, `/\10/.examples` should return `["\x08"]`
end
end
end