class SyntaxTree::ArrayLiteral

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

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

def initialize: (lbracket: SyntaxTree::LBracket, contents: SyntaxTree::Args?, location: SyntaxTree::Location) -> void

This signature was generated using 8 samples from 1 application.

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