Sha256: dc502ea76a9c0c7005e6b0f1a472524ccf4f7f2fd2bb215926d8fb2d3e445d98
Contents?: true
Size: 538 Bytes
Versions: 6772
Compression:
Stored size: 538 Bytes
Contents
# frozen_string_literal: true module PryByebug module Helpers # # Helpers to help handling multiline inputs # module Multiline # # Returns true if we are in a multiline context and, as a side effect, # updates the partial evaluation string with the current input. # # Returns false otherwise # def check_multiline_context return false if eval_string.empty? eval_string.replace("#{eval_string}#{match} #{arg_string}\n") true end end end end
Version data entries
6,772 entries across 6,768 versions & 30 rubygems