# File lib/pry/helpers/base_helpers.rb, line 76
      def colorize_code(code)
        if Pry.color
          CodeRay.scan(code, :ruby).term
        else
          code
        end
      end