class SyntaxTree::BlockNode

def initialize(opening:, block_var:, bodystmt:, location:)

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

def initialize: (opening: (SyntaxTree::Kw | SyntaxTree::LBrace), block_var: SyntaxTree::BlockVar?, bodystmt: (SyntaxTree::BodyStmt | SyntaxTree::Statements), location: SyntaxTree::Location) -> void

This signature was generated using 2 samples from 1 application.

def initialize(opening:, block_var:, bodystmt:, location:)
  @opening = opening
  @block_var = block_var
  @bodystmt = bodystmt
  @location = location
  @comments = []
end