class Pry::Code

object.
arbitrary chaining of formatting methods without mutating the original
which will format the text as specified when ‘#to_s` is called. This allows
In general, the formatting methods in `Code` return a new `Code` object
or method definition or be instantiated with a `String` or an `Array`.
line numbers and formats them for terminal output. It can read from a file
`Pry::Code` is a class that encapsulates lines of source code and their

def ==(other)

Returns:
  • (Boolean) -

Parameters:
  • other (Code, Object) --
def ==(other)
  if other.is_a?(Code)
    other_lines = other.instance_variable_get(:@lines)
    @lines.each_with_index.all? { |loc, i| loc == other_lines[i] }
  else
    to_s.chomp == other.to_s.chomp
  end
end

def after(lineno, lines = 1)

Returns:
  • (Code) -

Parameters:
  • lines (Integer) --
  • lineno (Integer) --
def after(lineno, lines = 1)
  return self unless lineno
  select do |loc|
    loc.lineno > lineno && loc.lineno <= lineno + lines
  end
end

def alter(&block)

class.
An abstraction of the `dup.instance_eval` pattern used throughout this
def alter(&block)
  dup.tap { |o| o.instance_eval(&block) }
end

def around(lineno, lines = 1)

Returns:
  • (Code) -

Parameters:
  • lines (Integer) --
  • lineno (Integer) --
def around(lineno, lines = 1)
  return self unless lineno
  select do |loc|
    loc.lineno >= lineno - lines && loc.lineno <= lineno + lines
  end
end

def before(lineno, lines = 1)

Returns:
  • (Code) -

Parameters:
  • lines (Integer) --
  • lineno (Integer) --
def before(lineno, lines = 1)
  return self unless lineno
  select do |loc|
    loc.lineno >= lineno - lines && loc.lineno < lineno
  end
end

def between(start_line, end_line = nil)

Returns:
  • (Code) -

Parameters:
  • end_line (Integer?) --
  • start_line (Range, Integer) --
def between(start_line, end_line = nil)
  return self unless start_line
  code_range = CodeRange.new(start_line, end_line)
  alter do
    @lines = @lines[code_range.indices_range(@lines)] || []
  end
end

def comment_describing(line_number)

Returns:
  • (String) - the code.

Parameters:
  • line_number (Integer) -- (1-based)
def comment_describing(line_number)
  self.class.comment_describing(raw, line_number)
end

def expression_at(line_number, consume = 0)

Returns:
  • (String) - the code.

Parameters:
  • line_number (Integer) -- (1-based)
def expression_at(line_number, consume = 0)
  self.class.expression_at(raw, line_number, consume: consume)
end

def from_file(filename, code_type = nil)

Returns:
  • (Code) -

Parameters:
  • code_type (Symbol) -- The type of code the file contains.
  • filename (String) -- The name of a file, or "(pry)".
def from_file(filename, code_type = nil)
  code_file = CodeFile.new(filename, code_type)
  new(code_file.code, 1, code_file.code_type)
end

def from_method(meth, start_line = nil)

Returns:
  • (Code) -

Parameters:
  • start_line (Integer, nil) -- The line number to start on, or nil to
  • meth (::Method, UnboundMethod, Proc, Pry::Method) -- The method
def from_method(meth, start_line = nil)
  meth = Pry::Method(meth)
  start_line ||= meth.source_line || 1
  new(meth.source, start_line, meth.source_type)
end

def from_module(mod, candidate_rank = 0, start_line = nil)

Returns:
  • (Code) -

Parameters:
  • start_line (Integer, nil) -- The line number to start on, or nil to
  • candidate_rank (Integer) -- The module candidate (by rank)
  • mod (Module, Class) -- The module (or class) of interest.
def from_module(mod, candidate_rank = 0, start_line = nil)
  candidate = Pry::WrappedModule(mod).candidate(candidate_rank)
  start_line ||= candidate.line
  new(candidate.source, start_line, :ruby)
end

def grep(pattern)

Returns:
  • (Code) -

Parameters:
  • pattern (Regexp) --
def grep(pattern)
  return self unless pattern
  pattern = Regexp.new(pattern)
  select do |loc|
    loc.line =~ pattern
  end
end

def highlighted

Returns:
  • (String) - a (possibly highlighted) copy of the source code.
def highlighted
  print_to_output(''.dup, true)
end

def initialize(lines = [], start_line = 1, code_type = :ruby)

Parameters:
  • code_type (Symbol?) --
  • start_line (Integer?) --
  • lines (Array, String, IO) --
def initialize(lines = [], start_line = 1, code_type = :ruby)
  lines = lines.lines if lines.is_a? String
  @lines = lines.each_with_index.map do |line, lineno|
    LOC.new(line, lineno + start_line.to_i)
  end
  @code_type = code_type
  @with_marker = @with_indentation = @with_line_numbers = nil
end

def length

Returns:
  • (Integer) -
def length
  @lines ? @lines.length : 0
end

def max_lineno_width

Returns:
  • (Integer) - the number of digits in the last line.
def max_lineno_width
  !@lines.empty? ? @lines.last.lineno.to_s.length : 0
end

def method_missing(method_name, *args, &block)

Forward any missing methods to the output of `#to_s`.
def method_missing(method_name, *args, &block)
  if (string = to_s).respond_to?(method_name)
    string.__send__(method_name, *args, &block)
  else
    super
  end
end

def nesting_at(line_number)

Returns:
  • (Array) - a list of open modules.

Parameters:
  • line_number (Integer) -- line number starting from 1
def nesting_at(line_number)
  Pry::Indent.nesting_at(raw, line_number)
end

def print_to_output(output, color = false)

object) to the given output, which must respond to `#<<`.
Writes a formatted representation (based on the configuration of the
def print_to_output(output, color = false)
  @lines.each do |loc|
    loc = loc.dup
    loc.colorize(@code_type)              if color
    loc.add_line_number(max_lineno_width, color) if @with_line_numbers
    loc.add_marker(@marker_lineno)        if @with_marker
    loc.indent(@indentation_num)          if @with_indentation
    output << loc.line
    output << "\n"
  end
  output
end

def push(line)

Returns:
  • (void) -

Parameters:
  • line (String) --
def push(line)
  line_number = @lines.any? ? @lines.last.lineno + 1 : 1
  @lines.push(LOC.new(line, line_number))
end

def raw

Returns:
  • (String) -
def raw
  @lines.map(&:line).join("\n") << "\n"
end

def reject(&block)

Returns:
  • (Code) -

Other tags:
    Yield: -
def reject(&block)
  alter do
    @lines = @lines.reject(&block)
  end
end

def respond_to_missing?(method_name, include_private = false)

Check whether String responds to missing methods.
def respond_to_missing?(method_name, include_private = false)
  ''.respond_to?(method_name, include_private) || super
end

def select(&block)

Returns:
  • (Code) -

Other tags:
    Yield: -
def select(&block)
  alter do
    @lines = @lines.select(&block)
  end
end

def take_lines(start_line, num_lines)

Returns:
  • (Code) -

Parameters:
  • num_lines (Integer) --
  • start_line (Integer) --
def take_lines(start_line, num_lines)
  start_idx =
    if start_line >= 0
      @lines.index { |loc| loc.lineno >= start_line } || @lines.length
    else
      [@lines.length + start_line, 0].max
    end
  alter do
    @lines = @lines.slice(start_idx, num_lines)
  end
end

def to_s

Returns:
  • (String) - a formatted representation (based on the configuration of
def to_s
  print_to_output(''.dup, false)
end

def with_indentation(spaces = 0)

Returns:
  • (Code) -

Parameters:
  • spaces (Integer?) --
def with_indentation(spaces = 0)
  alter do
    @with_indentation = !!spaces
    @indentation_num  = spaces
  end
end

def with_line_numbers(y_n = true)

Returns:
  • (Code) -

Parameters:
  • y_n (Boolean?) --
def with_line_numbers(y_n = true)
  alter do
    @with_line_numbers = y_n
  end
end

def with_marker(lineno = 1)

Returns:
  • (Code) -

Parameters:
  • lineno (Integer?) --
def with_marker(lineno = 1)
  alter do
    @with_marker   = !!lineno
    @marker_lineno = lineno
  end
end