class RuboCop::NodePattern::Compiler::Sequence

def term(index, range)

def term(index, range)
  t = @terms[index]
  if t.respond_to? :call
    t.call(range)
  else
    with_child_context(t, range.begin)
  end
end