class SyntaxTree::RegexpLiteral

def initialize(beginning:, ending:, parts:, location:)

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

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

This signature was generated using 3 samples from 1 application.

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