class Solargraph::TypeChecker::Problem


A problem reported by TypeChecker.

def initialize location, message, pin: nil, suggestion: nil

Parameters:
  • suggestion (String, nil) --
  • pin (Solargraph::Pin::Base, nil) --
  • message (String) --
  • location (Solargraph::Location) --
def initialize location, message, pin: nil, suggestion: nil
  @location = location
  @message = message
  @pin = pin
  @suggestion = suggestion
end