class Sexp::Remaining

Matches all remaining input. If remaining comes before any other matchers, they will be ignored.

examples:

s(:a)         / s{ s(:a, ___ ) } #=> [s(:a)]
s(:a, :b, :c) / s{ s(:a, ___ ) } #=> [s(:a, :b, :c)]