# File lib/sexp_processor.rb, line 5
  def process(sexp)
    return nil if sexp.nil?
    
    sexp.extend Sexp if !sexp.is_a?(Sexp)
    sexp.perform_process_call(self)
  end