# File lib/typed_sexp_processor.rb, line 29 def inspect sexp_str = self.map {|x|x.inspect}.join(', ') sexp_type_str = (sexp_str.empty? ? "" : ", ") + "#{array_type? ? sexp_types.inspect : sexp_type}" unless sexp_type.nil? return "t(#{sexp_str}#{sexp_type_str})" end