class Yoda::Parsing::TypeParser::Generator::Param

Attributes

keyword[R]
kind[R]
type[R]

Public Class Methods

new(kind, type, keyword = nil) click to toggle source
# File lib/yoda/parsing/type_parser.rb, line 132
def initialize(kind, type, keyword = nil)
  @kind = kind
  @keyword = keyword
  @type = type
end