class SyntaxTree::Paren

def initialize(lparen:, contents:, location:)

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

def initialize: (lparen: SyntaxTree::LParen, contents: SyntaxTree::Params, location: SyntaxTree::Location) -> void

This signature was generated using 3 samples from 1 application.

def initialize(lparen:, contents:, location:)
  @lparen = lparen
  @contents = contents
  @location = location
  @comments = []
end