Method: Steep::AST::MethodType::Params::OptionalKeyword#initialize
- Defined in:
- lib/steep/ast/method_type.rb
#initialize(location:, name:, type:, next_params: nil) ⇒ OptionalKeyword
71 72 73 74 75 76 |
# File 'lib/steep/ast/method_type.rb', line 71 def initialize(location:, name:, type:, next_params: nil) super(location: location) @name = name @type = type @next_params = next_params end |