Method: RBI::Param#initialize

Defined in:
lib/rbi/model.rb

#initialize(name, loc: nil, comments: []) ⇒ Param

: (String name, ?loc: Loc?, ?comments: Array) -> void



520
521
522
523
# File 'lib/rbi/model.rb', line 520

def initialize(name, loc: nil, comments: [])
  super(loc: loc, comments: comments)
  @name = name
end