class Solargraph::SourceMap::Completion

The result of a completion request containing the pins that describe completion options and the range to be replaced.

Attributes

pins[R]

@return [Array<Solargraph::Pin::Base>]

range[R]

@return [Solargraph::Range]

Public Class Methods

new(pins, range) click to toggle source

@param pins [Array<Solargraph::Pin::Base>] @param range [Solargraph::Range]

# File lib/solargraph/source_map/completion.rb, line 16
def initialize pins, range
  @pins = pins
  @range = range
end