class RubyBreaker::TypeDefs::NominalType
This class represents a concrete object like a Numeric or String. It stores the actual module in the instance variable @mod.
Attributes
mod[RW]
This accessor points to the actual module
Public Class Methods
new(mod=nil,*args)
click to toggle source
Calls superclass method
RubyBreaker::TypeDefs::Type::new
# File lib/rubybreaker/type/type.rb, line 86 def initialize(mod=nil,*args) super(*args) @mod = mod end