class SyntaxTree::StringLiteral

def initialize(parts:, quote:, location:)

Experimental RBS support (using type sampling data from the type_fusion project).

def initialize: (parts: Array[SyntaxTree::TStringContent], quote: String, location: SyntaxTree::Location) -> void

This signature was generated using 22 samples from 1 application.

def initialize(parts:, quote:, location:)
  @parts = parts
  @quote = quote
  @location = location
  @comments = []
end