class Prism::UnlessNode

def initialize(keyword_loc, predicate, then_keyword_loc, statements, consequent, end_keyword_loc, location)

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

def initialize: (Prism::Location keyword_loc, (Prism::LocalVariableWriteNode | Prism::CallNode) predicate, nil then_keyword_loc, Prism::StatementsNode statements, nil consequent, Prism::Location? end_keyword_loc, Prism::Location location) -> void

This signature was generated using 2 samples from 1 application.

def initialize: (Location keyword_loc, Node predicate, Location? then_keyword_loc, StatementsNode? statements, ElseNode? consequent, Location? end_keyword_loc, Location location) -> void
def initialize(keyword_loc, predicate, then_keyword_loc, statements, consequent, end_keyword_loc, location)
  @newline = false
  @keyword_loc = keyword_loc
  @predicate = predicate
  @then_keyword_loc = then_keyword_loc
  @statements = statements
  @consequent = consequent
  @end_keyword_loc = end_keyword_loc
  @location = location
end